- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ippScripts/scripts/detrend_process_imfile.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/ippScripts/scripts/detrend_process_imfile.pl
r24764 r27840 8 8 use Sys::Hostname; 9 9 my $host = hostname(); 10 my $date = `date`; 10 11 print "\n\n"; 11 print "Starting script $0 on $host \n\n";12 print "Starting script $0 on $host at $date\n\n"; 12 13 13 14 use vars qw( $VERSION ); … … 91 92 'DOMEFLAT_RAW' => 'PPIMAGE.OUTPUT.DETREND', 92 93 'SKYFLAT_RAW' => 'PPIMAGE.OUTPUT.DETREND', 94 'SKYFLATTEST_RAW' => 'PPIMAGE.OUTPUT.DETREND', 93 95 'FLAT' => 'PPIMAGE.OUTPUT.DETREND', 94 96 'DOMEFLAT' => 'PPIMAGE.OUTPUT.DETREND', 95 97 'SKYFLAT' => 'PPIMAGE.OUTPUT.DETREND', 96 'FRINGE' => undef,98 'FRINGE' => 'PPIMAGE.OUTPUT.DETREND', 97 99 }; 98 100 … … 138 140 } 139 141 140 &my_die("Couldn't find expected output file: $outputImage", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless -f $ipprc->file_resolve($outputImage);141 &my_die("Couldn't find expected output file: $outputBin1", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless -f $ipprc->file_resolve($outputBin1);142 &my_die("Couldn't find expected output file: $outputBin2", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless -f $ipprc->file_resolve($outputBin2);142 &my_die("Couldn't find expected output file: $outputImage", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputImage); 143 &my_die("Couldn't find expected output file: $outputBin1", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputBin1); 144 &my_die("Couldn't find expected output file: $outputBin2", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputBin2); 143 145 144 146 my $outputStatsReal = $ipprc->file_resolve($outputStats); 145 &my_die("Couldn't find expected output file: $outputStats", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless -f $outputStatsReal;147 &my_die("Couldn't find expected output file: $outputStats", $det_id, $exp_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputStatsReal); 146 148 147 149 # parse stats from metadata
Note:
See TracChangeset
for help on using the changeset viewer.
