Changeset 18048 for trunk/ippScripts/scripts/detrend_process_imfile.pl
- Timestamp:
- Jun 10, 2008, 8:46:59 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_process_imfile.pl
r17971 r18048 25 25 26 26 my ( $det_id, $exp_id, $class_id, $det_type, $exp_tag, $input_uri, $camera, $outroot, $dbname, $reduction, 27 $verbose, $no_update, $no_op );27 $verbose, $no_update, $no_op, $redirect ); 28 28 GetOptions( 29 29 'det_id|d=s' => \$det_id, … … 40 40 'no-update' => \$no_update, 41 41 'no-op' => \$no_op, 42 'redirect-output' => \$redirect, 42 43 ) or pod2usage( 2 ); 43 44 … … 56 57 # XXX this exits with status = 0 on failure 57 58 $ipprc->define_camera($camera); 59 60 my $logDest = $ipprc->filename("LOG.IMFILE", $outroot, $class_id) 61 or &my_die("Missing entry from camera config", $exp_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR); 62 63 $ipprc->redirect_output($logDest) if $redirect; 58 64 59 65 # Recipes to use as a function of detrend type … … 95 101 my $outputStats = $ipprc->filename("PPIMAGE.STATS", $outroot, $class_id) or &my_die("Missing entry from camera config", $det_id, $exp_id, $class_id, $PS_EXIT_PROG_ERROR); 96 102 my $traceDest = $ipprc->filename("TRACE.IMFILE", $outroot, $class_id) or &my_die("Missing entry from camera config", $exp_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR); 97 my $logDest = $ipprc->filename("LOG.IMFILE", $outroot, $class_id) or &my_die("Missing entry from camera config", $exp_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR);98 99 103 # Run ppImage 100 104 unless ($no_op) {
Note:
See TracChangeset
for help on using the changeset viewer.
