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_bundle.pl

    r27718 r28506  
    3535                     'PPIMAGE.CHIP.MASK' => 'mask',
    3636                     'PPIMAGE.CHIP.VARIANCE' => 'variance' );
     37my %chip_bg_cleaned = ( 'PPBACKGROUND.OUTPUT' => 'image',
     38                        'PPBACKGROUND.OUTPUT.MASK' => 'mask' );
    3739my %camera_cleaned = ( 'PSASTRO.OUTPUT.MASK' => 'mask' );
    3840my %fake_cleaned;
     
    4042                     'PSWARP.OUTPUT.MASK' => 'mask',
    4143                     'PSWARP.OUTPUT.VARIANCE' => 'variance' );
     44my %warp_bg_cleaned = ( 'PSWARP.OUTPUT' => 'image',
     45                        'PSWARP.OUTPUT.MASK' => 'mask' );
    4246my %diff_cleaned = ( 'PPSUB.OUTPUT' => 'image',
    4347                     'PPSUB.OUTPUT.MASK' => 'mask',
     
    246250        my $fh = open_with_retries($mask_resolved);
    247251        close $fh;
    248     } elsif ($stage eq "chip") {
     252    } elsif ($stage eq "chip" or $stage eq "chip_bg") {
    249253        $class_id = $component;
    250254    }
     
    416420    if ($stage eq "chip") {
    417421        $config_file_rule = "PPIMAGE.CONFIG";
     422    } elsif ($stage eq "chip") {
     423        $config_file_rule = "PPBACKGROUND.CONFIG";
    418424    } elsif ($stage eq "camera") {
    419425        $config_file_rule = "PSASTRO.CONFIG";
     
    422428        return \@file_list;
    423429    } elsif ($stage eq "warp") {
     430        $config_file_rule = "PSWARP.CONFIG";
     431    } elsif ($stage eq "warp_bg") {
    424432        $config_file_rule = "PSWARP.CONFIG";
    425433    } elsif ($stage eq "diff") {
Note: See TracChangeset for help on using the changeset viewer.