Changeset 19127
- Timestamp:
- Aug 19, 2008, 12:30:55 PM (18 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 4 edited
-
chip_imfile.pl (modified) (3 diffs)
-
detrend_process_imfile.pl (modified) (3 diffs)
-
detrend_resid_imfile.pl (modified) (3 diffs)
-
warp_skycell.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/chip_imfile.pl
r18562 r19127 25 25 26 26 # Parse the command-line arguments 27 my ( $exp_id, $chip_id, $class_id, $uri, $camera, $outroot, $dbname, $reduction, $ verbose,27 my ( $exp_id, $chip_id, $class_id, $uri, $camera, $outroot, $dbname, $reduction, $threads, $verbose, 28 28 $no_update, $no_op, $redirect ); 29 29 GetOptions( … … 36 36 'dbname|d=s' => \$dbname, # Database name 37 37 'reduction=s' => \$reduction, # Reduction class 38 'threads=s' => \$threads, # Number of threads to use for ppImage 38 39 'verbose' => \$verbose, # Print to stdout 39 40 'no-update' => \$no_update, # Don't update the database? … … 139 140 $command .= " -recipe PPSTATS CHIPSTATS"; 140 141 $command .= " -stats $outputStats"; 142 $command .= " -threads $threads" if defined $threads; 141 143 $command .= " -dbname $dbname" if defined $dbname; 142 144 $command .= " -tracedest $traceDest -log $logDest"; -
trunk/ippScripts/scripts/detrend_process_imfile.pl
r18562 r19127 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, $redirect );27 $threads, $verbose, $no_update, $no_op, $redirect ); 28 28 GetOptions( 29 29 'det_id|d=s' => \$det_id, … … 37 37 'dbname|d=s' => \$dbname, # Database name 38 38 'reduction=s' => \$reduction, # Reduction class 39 'threads=s' => \$threads, # Number of threads to use for ppImage 39 40 'verbose' => \$verbose, # Print to stdout 40 41 'no-update' => \$no_update, … … 107 108 $command .= " -stats $outputStats"; 108 109 $command .= " -tracedest $traceDest -log $logDest"; 110 $command .= " -threads $threads" if defined $threads; 109 111 $command .= " -dbname $dbname" if defined $dbname; 110 112 -
trunk/ippScripts/scripts/detrend_resid_imfile.pl
r18562 r19127 25 25 26 26 my ( $det_id, $iter, $exp_id, $exp_tag, $class_id, $det_type, $detrend, $input_uri, $camera, $mode, $outroot, 27 $dbname, $reduction, $ verbose, $no_update, $no_op, $redirect );27 $dbname, $reduction, $threads, $verbose, $no_update, $no_op, $redirect ); 28 28 GetOptions( 29 29 'det_id|d=s' => \$det_id, … … 40 40 'dbname|d=s' => \$dbname, # Database name 41 41 'reduction=s' => \$reduction, # Reduction class 42 'threads=s' => \$threads, # Number of threads to use for ppImage 42 43 'verbose' => \$verbose, # Print to stdout 43 44 'no-update' => \$no_update, … … 158 159 $command .= " -stats $outputStats"; 159 160 $command .= " -tracedest $traceDest -log $logDest"; 161 $command .= " -threads $threads" if defined $threads; 160 162 $command .= " -dbname $dbname" if defined $dbname; 161 163 -
trunk/ippScripts/scripts/warp_skycell.pl
r19113 r19127 25 25 my $ipprc = PS::IPP::Config->new(); # IPP configuration 26 26 27 my ($warp_id, $skycell_id, $tess_dir, $camera, $dbname, $outroot, $ verbose, $no_update, $no_op, $redirect, $save_temps);27 my ($warp_id, $skycell_id, $tess_dir, $camera, $dbname, $outroot, $threads, $verbose, $no_update, $no_op, $redirect, $save_temps); 28 28 GetOptions( 29 29 'warp_id|i=s' => \$warp_id, # Warp identifier … … 33 33 'dbname|d=s' => \$dbname, # Database name 34 34 'outroot=s' => \$outroot, # Output root name 35 'threads=s' => \$threads, # Number of threads to use for ppImage 35 36 'verbose' => \$verbose, # Print to stdout 36 37 'no-update' => \$no_update, # Don't update the database? … … 171 172 my $command = "$pswarp"; 172 173 $command .= " -list $imageName"; 173 # $command .= " -threads 4";174 174 $command .= " -masklist $maskName"; 175 175 $command .= " -weightlist $weightName"; … … 183 183 $command .= " -psf"; # Turn on PSF determination 184 184 $command .= " -tracedest $traceDest -log $logDest"; 185 $command .= " -threads $threads" if defined $threads; 185 186 $command .= " -dbname $dbname" if defined $dbname; 186 187
Note:
See TracChangeset
for help on using the changeset viewer.
