Changeset 29233
- Timestamp:
- Sep 24, 2010, 3:44:17 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/perl/getSmfForThisBatch.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/perl/getSmfForThisBatch.pl
r29196 r29233 10 10 11 11 my $camera = undef; 12 my $ singleBatch = undef;12 my $batch = undef; 13 13 my $verbose = undef; 14 14 my $save_temps = undef; 15 15 16 16 GetOptions( 17 'batch|b=s' => \$ singleBatch,17 'batch|b=s' => \$batch, 18 18 'verbose|v' => \$verbose, 19 19 'save_temps|t' => \$save_temps, … … 28 28 print "* UNKNKOWN: option @ARGV\n"; 29 29 } 30 if (!defined $ singleBatch) {30 if (!defined $batch) { 31 31 $quit=1; 32 32 print "* REQUIRED: need to provide a batch -b <batch>\n"; … … 55 55 $camera, 56 56 $gpc1Db, 57 $ singleBatch,57 $batch, 58 58 $ippToPspsDb, 59 59 "./", … … 61 61 $save_temps); 62 62 63 64 print $detectionBatch->getSmfFile() . "\n"; 65 63 my $smf = $detectionBatch->getSmfFile(); 64 if (defined $smf) { 65 print "$smf\n"; 66 } 67 else { 68 print "* Could not find an smf file for batch $batch\n"; 69 }
Note:
See TracChangeset
for help on using the changeset viewer.
