Changeset 30673
- Timestamp:
- Feb 17, 2011, 11:31:46 AM (15 years ago)
- Location:
- tags/ipp-20101215
- Files:
-
- 2 edited
-
ippScripts/scripts/dist_bundle.pl (modified) (1 diff, 1 prop)
-
ippTools/share/disttool_pending_raw.sql (modified) (5 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20101215/ippScripts/scripts/dist_bundle.pl
- Property svn:mergeinfo changed
/trunk/ippScripts/scripts/dist_bundle.pl merged: 30653
r30490 r30673 287 287 # we can use the chip mask because disttool demands that magic have been run 288 288 # and so the camera mask and the chip mask are the same 289 $mask = $ipprc->filename("PPIMAGE.CHIP.MASK", $chip_path_base, $component); 289 #$mask = $ipprc->filename("PPIMAGE.CHIP.MASK", $chip_path_base, $component); 290 # XXX: hack the pending query passes in the camera path base 291 $mask = $ipprc->filename("PSASTRO.OUTPUT.MASK", $chip_path_base, $component); 290 292 my $mask_resolved = $ipprc->file_resolve($mask); 291 293 my $fh = open_with_retries($mask_resolved); - Property svn:mergeinfo changed
-
tags/ipp-20101215/ippTools/share/disttool_pending_raw.sql
- Property svn:mergeinfo set to
r30386 r30673 12 12 TRIM(TRAILING '.fits' FROM rawImfile.uri) AS path_base, 13 13 CAST(NULL AS CHAR(255)) AS alt_path_base, 14 chipProcessedImfile.path_base as chip_path_base, 14 -- pass camera stage path base since we want the camera mask file. The script knows what to do 15 camProcessedExp.path_base as chip_path_base, 15 16 CAST(NULL AS CHAR(255)) AS state, 16 17 CAST(NULL AS CHAR(255)) AS data_state, … … 26 27 JOIN chipProcessedImfile 27 28 USING(chip_id, class_id) 29 JOIN camRun USING(chip_id) 30 JOIN camProcessedExp using(cam_id) 28 31 LEFT JOIN distComponent 29 32 ON distRun.dist_id = distComponent.dist_id … … 36 39 AND distComponent.dist_id IS NULL 37 40 AND (rawExp.magicked OR distRun.no_magic) 41 -- need to have magicked the chip image which makes the camera mask 42 AND chipProcessedImfile.magicked != 0 43 AND camRun.magicked > 0 38 44 AND (Label.active OR Label.active IS NULL) 39 45 UNION … … 52 58 TRIM(TRAILING '.fits' FROM rawImfile.uri) AS path_base, 53 59 magicDSFile.backup_path_base AS alt_path_base, 54 chipProcessedImfile.path_base AS chip_path_base, 60 -- pass camera stage path base since we want the camera mask file. The script knows what to do 61 camProcessedExp.path_base AS chip_path_base, 55 62 CAST('full' AS CHAR(255)) AS state, 56 63 CAST('full' AS CHAR(255)) AS data_state, … … 77 84 AND distRun.clean = 0 78 85 AND distComponent.dist_id IS NULL 79 AND chipProcessedImfile. data_state = 'full'80 AND c hipProcessedImfile.magicked > 086 AND chipProcessedImfile.magicked != 0 87 AND camRun.magicked > 0 81 88 AND (Label.active OR Label.active IS NULL) 82 89 UNION
Note:
See TracChangeset
for help on using the changeset viewer.
