Changeset 9004 for trunk/ippScripts/scripts/detrend_calc_norm.pl
- Timestamp:
- Sep 27, 2006, 9:35:47 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_calc_norm.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_calc_norm.pl
r8998 r9004 16 16 # Parse command-line arguments 17 17 my ($detId, # Detrend id 18 $iter, # Iteration 19 $camera, # Camera name 20 $detType # Detrend type 18 $iter # Iteration 21 19 ); 22 20 GetOptions( 23 21 'det_id|d=s' => \$detId, 24 22 'iteration|i=s' => \$iter, 25 'camera|c=s' => \$camera,26 'det_type|t=s' => \$detType27 23 ) or pod2usage( 2 ); 28 24 … … 31 27 -exitval => 3, 32 28 ) unless defined $detId 33 and defined $iter 34 and defined $camera 35 and defined $detType; 29 and defined $iter; 36 30 37 31 … … 56 50 57 51 # Parse the output 58 my $metadata = $mdcParser->parse( join "", @$stdout)52 my $metadata = $mdcParser->parse($stdout) 59 53 or die "unable to parse metadata config doc"; 60 54 $files = parse_md_list($metadata); … … 91 85 92 86 # Parse the output 93 $norms = $mdcParser->parse( join "", @$stdout)87 $norms = $mdcParser->parse($stdout) 94 88 or die "unable to parse metadata config doc"; 95 89 }
Note:
See TracChangeset
for help on using the changeset viewer.
