Changeset 28963
- Timestamp:
- Aug 18, 2010, 7:45:40 PM (16 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 3 edited
-
dist_advancerun.pl (modified) (2 diffs)
-
dist_bundle.pl (modified) (3 diffs)
-
dist_make_fileset.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/dist_advancerun.pl
r28735 r28963 67 67 my $stacktool = can_run('stacktool') or (warn "Can't find stacktool" and $missing_tools = 1); 68 68 my $bgtool = can_run('bgtool') or (warn "Can't find bgtool" and $missing_tools = 1); 69 my $staticskytool = can_run('staticskytool') or (warn "Can't find staticskytool" and $missing_tools = 1); 69 70 if ($missing_tools) { 70 71 &my_die("Can't find required tools.", $dist_id, $PS_EXIT_CONFIG_ERROR); … … 108 109 $list_mode = "-sumskyfile"; 109 110 $component_key = "skycell_id"; 111 } elsif ($stage eq "sky") { 112 $tool_cmd = "$staticskytool -sky_id"; 113 $list_mode = "-result"; 114 $component_key = ""; 110 115 } elsif ($stage eq "diff") { 111 116 $tool_cmd = "$difftool -diff_id"; -
trunk/ippScripts/scripts/dist_bundle.pl
r28942 r28963 53 53 'PPSTACK.OUTPUT.MASK' => 'mask', 54 54 'PPSTACK.OUTPUT.VARIANCE' => 'variance' ); 55 my %sky_cleaned = ( 'PSPHOT.STACK.OUTPUT.IMAGE' => 'image', 56 'PSPHOT.STACK.OUTPUT.MASK' => 'mask', 57 'PSPHOT.STACK.OUTPUT.VARIANCE' => 'variance' ); 55 58 56 59 … … 420 423 } elsif ($stage eq "stack") { 421 424 $type = $stack_cleaned{$rule}; 425 } elsif ($stage eq "sky") { 426 $type = $sky_cleaned{$rule}; 422 427 } else { 423 428 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); … … 500 505 } elsif ($stage eq "stack") { 501 506 $config_file_rule = "PPSTACK.CONFIG"; 507 } elsif ($stage eq "sky") { 508 $config_file_rule = "PSPHOT.STACK.CONFIG"; 502 509 } else { 503 510 &my_die("$stage is not a valid stage", $component, $PS_EXIT_CONFIG_ERROR); -
trunk/ippScripts/scripts/dist_make_fileset.pl
r28536 r28963 223 223 my $dbname = shift; 224 224 225 if (($stage eq 'stack') or ($stage eq 'diff') or ($stage eq 'SSdiff') ) {225 if (($stage eq 'stack') or ($stage eq 'diff') or ($stage eq 'SSdiff') or $stage eq 'sky') { 226 226 return ""; 227 227 }
Note:
See TracChangeset
for help on using the changeset viewer.
