Changeset 24764 for trunk/ippScripts/scripts/detrend_process_imfile.pl
- Timestamp:
- Jul 12, 2009, 11:06:44 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_process_imfile.pl
r24721 r24764 63 63 defined $outroot; 64 64 65 # force det_type to be upper-case in this script 66 $det_type = uc($det_type); 67 65 68 my $ipprc = PS::IPP::Config->new( $camera ) or my_die( "Unable to set up", $det_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR ); # IPP configuration 66 69 my $logDest = $ipprc->filename("LOG.IMFILE", $outroot, $class_id) or &my_die("Missing entry from camera config", $det_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR); … … 69 72 # Recipes to use as a function of detrend type 70 73 $reduction = "DETREND" unless defined $reduction; 71 my $ppimage_recipe = $ipprc->reduction($reduction, uc($det_type). '_PROCESS'); # Recipe name for ppImage72 my $jpeg_recipe = $ipprc->reduction($reduction, uc($det_type). '_JPEG_IMAGE'); # Recipe name for JPEG74 my $ppimage_recipe = $ipprc->reduction($reduction, $det_type . '_PROCESS'); # Recipe name for ppImage 75 my $jpeg_recipe = $ipprc->reduction($reduction, $det_type . '_JPEG_IMAGE'); # Recipe name for JPEG 73 76 74 77 # The output file rule name depends on the detrend type
Note:
See TracChangeset
for help on using the changeset viewer.
