IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 25, 2010, 11:06:16 AM (16 years ago)
Author:
Paul Price
Message:

Adding support for background restored products.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/ippScripts/scripts/dist_advancerun.pl

    r27718 r28506  
    6666my $difftool   = can_run('difftool') or (warn "Can't find difftool" and $missing_tools = 1);
    6767my $stacktool   = can_run('stacktool') or (warn "Can't find stacktool" and $missing_tools = 1);
     68my $bgtool = can_run('bgtool') or (warn "Can't find bgtool" and $missing_tools = 1);
    6869if ($missing_tools) {
    6970    &my_die("Can't find required tools.", $dist_id, $PS_EXIT_CONFIG_ERROR);
     
    8283    $tool_cmd = "$chiptool -chip_id";
    8384    $list_mode = "-processedimfile";
     85    $component_key = "class_id";
     86} elsif ($stage eq "chip_bg") {
     87    $tool_cmd = "$bgtool -chip_bg_id";
     88    $list_mode = "-chip";
    8489    $component_key = "class_id";
    8590} elsif ($stage eq "camera") {
     
    9499    $tool_cmd = "$warptool -warp_id";
    95100    $list_mode = "-warped";
     101    $component_key = "skycell_id";
     102} elsif ($stage eq "warp_bg") {
     103    $tool_cmd = "$bgtool -warp_bg_id";
     104    $list_mode = "-warp";
    96105    $component_key = "skycell_id";
    97106} elsif ($stage eq "stack") {
Note: See TracChangeset for help on using the changeset viewer.