Changeset 21309
- Timestamp:
- Feb 5, 2009, 9:36:52 AM (17 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 4 edited
-
chip_imfile.pl (modified) (4 diffs)
-
diff_skycell.pl (modified) (4 diffs)
-
stack_skycell.pl (modified) (1 diff)
-
warp_skycell.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/chip_imfile.pl
r20927 r21309 53 53 defined $chip_id and 54 54 defined $class_id and 55 ## defined $chip_imfile_id and XXX until this is added to the scheme, do not require it :55 defined $chip_imfile_id and 56 56 defined $uri and 57 57 defined $camera and … … 102 102 $ipprc->outroot_prepare($outroot); 103 103 104 my $image_id = $chip_imfile_id;105 104 my $source_id = $ipprc->source_id($dbname, $PS_TABLE_ID_CHIP); 106 105 … … 133 132 $command .= " -threads $threads" if defined $threads; 134 133 $command .= " -dbname $dbname" if defined $dbname; 135 # $command .= " -image_id $image_id" if defined $image_id;136 #$command .= " -source_id $source_id" if defined $source_id;134 $command .= " -image_id $chip_imfile_id" if defined $chip_imfile_id; 135 $command .= " -source_id $source_id" if defined $source_id; 137 136 $command .= " -dumpconfig $configuration"; 138 137 $command .= " -tracedest $traceDest -log $logDest"; … … 143 142 $command .= " -threads $threads" if defined $threads; 144 143 $command .= " -dbname $dbname" if defined $dbname; 145 # $command .= " -image_id $image_id" if defined $image_id;146 #$command .= " -source_id $source_id" if defined $source_id;144 $command .= " -image_id $chip_imfile_id" if defined $chip_imfile_id; 145 $command .= " -source_id $source_id" if defined $source_id; 147 146 $command .= " -tracedest $traceDest -log $logDest"; 148 147 $command .= " -Db PPIMAGE:PHOTOM FALSE"; -
trunk/ippScripts/scripts/diff_skycell.pl
r20973 r21309 28 28 29 29 my ($diff_id, $dbname, $threads, $outroot, $reduction, $verbose, $no_update, $no_op, $redirect); 30 my $skycell_id; # Skycell identifier30 my ($skycell_id, $diff_skyfile_id); 31 31 GetOptions( 32 32 'diff_id=s' => \$diff_id, # Diff identifier 33 33 'skycell_id=s' => \$skycell_id, # Diff identifier 34 'diff_skyfile_id=s' => \$diff_skyfile_id, # Diff identifier 34 35 'dbname|d=s' => \$dbname, # Database name 35 36 'threads=s' => \$threads, # Number of threads to use … … 48 49 ) unless defined $diff_id 49 50 and defined $skycell_id 51 and defined $diff_skyfile_id 50 52 and defined $outroot; 51 53 … … 55 57 my $logDest = "$outroot.log"; 56 58 $ipprc->redirect_output($logDest) if $redirect; 59 60 my $source_id = $ipprc->source_id($dbname, $PS_TABLE_ID_DIFF); 57 61 58 62 # Look for programs we need … … 212 216 $command .= " -dumpconfig $configuration"; 213 217 $command .= " -dbname $dbname" if defined $dbname; 218 $command .= " -image_id $diff_skyfile_id" if defined $diff_skyfile_id; 219 $command .= " -source_id $source_id" if defined $source_id; 214 220 215 221 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = -
trunk/ippScripts/scripts/stack_skycell.pl
r21145 r21309 215 215 $command .= " -tracedest $traceDest -log $logDest"; 216 216 $command .= " -dbname $dbname" if defined $dbname; 217 #$command .= " -image_id $image_id" if defined $image_id;218 #$command .= " -source_id $source_id" if defined $source_id;217 $command .= " -image_id $image_id" if defined $image_id; 218 $command .= " -source_id $source_id" if defined $source_id; 219 219 if ($run_state eq 'new') { 220 220 $command .= " -dumpconfig $configuration"; -
trunk/ippScripts/scripts/warp_skycell.pl
r21179 r21309 51 51 ) unless defined $warp_id 52 52 and defined $skycell_id 53 ###and defined $warp_skyfile_id53 and defined $warp_skyfile_id 54 54 and defined $tess_dir 55 55 and defined $camera … … 64 64 $ipprc->redirect_output($logDest) if $redirect; 65 65 66 my $image_id = $warp_skyfile_id;67 66 my $source_id = $ipprc->source_id($dbname, $PS_TABLE_ID_WARP); 68 67 … … 196 195 $command .= " -threads $threads" if defined $threads; 197 196 $command .= " -dbname $dbname" if defined $dbname; 198 # $command .= " -image_id $image_id" if defined $image_id;199 #$command .= " -source_id $source_id" if defined $source_id;197 $command .= " -image_id $warp_skyfile_id" if defined $warp_skyfile_id; 198 $command .= " -source_id $source_id" if defined $source_id; 200 199 if ($run_state eq 'new') { 201 200 $command .= " -dumpconfig $configuration";
Note:
See TracChangeset
for help on using the changeset viewer.
