Changeset 26144 for trunk/ippTools
- Timestamp:
- Nov 13, 2009, 2:55:01 PM (17 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 3 edited
-
share/difftool_definewarpstack_part1.sql (modified) (1 diff)
-
src/difftool.c (modified) (3 diffs)
-
src/difftoolConfig.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/difftool_definewarpstack_part1.sql
r26138 r26144 25 25 JOIN chipRun USING(chip_id) 26 26 WHERE warp1 IS NOT NULL 27 AND warpRun.state = 'full' 27 28 -- warp where hook %s 28 29 ) AS diffExp USING(exp_id, warp_id) -
trunk/ippTools/src/difftool.c
r26139 r26144 1205 1205 psFree(warp2Where); 1206 1206 1207 if (!available) {1208 // diff what's available, even if warp run has some faults and is incomplete1209 psStringAppend(&warp1Query, " AND warpRun.state = 'full'");1210 psStringAppend(&warp2Query, " AND warpRun.state = 'full'");1211 }1212 1213 1207 // don't queue for exposures that have already been diff'd unless requested 1214 1208 psString diffQuery = NULL; … … 1392 1386 1393 1387 if (num == 0) { 1394 psTrace("difftool", PS_LOG_INFO, "no skycells with stack found for %" PRId64, warp_id);1388 psTrace("difftool", PS_LOG_INFO, "no skycells with stack found for warp_id %" PRId64, warp_id); 1395 1389 continue; 1396 1390 } … … 1398 1392 if (!available && (num != skycell_count)) { 1399 1393 psTrace("difftool", PS_LOG_INFO, "%" PRId64 " skyfiles with stack found for warp_id %" PRId64 1400 " need %" PRId64, num, warp_id, skycell_count);1394 " but need %" PRId64, num, warp_id, skycell_count); 1401 1395 continue; 1402 1396 } -
trunk/ippTools/src/difftoolConfig.c
r25840 r26144 192 192 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-new-templates", 0, "also search for diffs with new template", false); 193 193 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-rerun", 0, "define new run even if one exists", false); 194 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-available", 0, "define new run even if warpRun has some faults", false);194 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-available", 0, "define new run even if no stacks available for some skycells", false); 195 195 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false); 196 196 psMetadataAddBool(definewarpstackArgs, PS_LIST_TAIL, "-pretend", 0, "list results but to not queue", false); … … 328 328 PXOPT_ADD_MODE("-topurgedskyfile", "set skyfile as purged", DIFFTOOL_MODE_TOPURGEDSKYFILE, topurgedskyfileArgs); 329 329 PXOPT_ADD_MODE("-toscrubbedskyfile", "set skyfile as scrubbed", DIFFTOOL_MODE_TOSCRUBBEDSKYFILE, toscrubbedskyfileArgs); 330 330 331 331 if (!pxGetOptions(stderr, argc, argv, config, modes, argSets)) { 332 332 psError(PS_ERR_UNKNOWN, true, "option parsing failed");
Note:
See TracChangeset
for help on using the changeset viewer.
