IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37339


Ignore:
Timestamp:
Aug 29, 2014, 5:41:40 PM (12 years ago)
Author:
watersc1
Message:

The component map was being generated wrong. I think this new version creates the things in the way we want them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-pv3-20140717/ippScripts/scripts/sc_prepare_stack.pl

    r37338 r37339  
    153153        # Append file names to transfer lists so we can recover if warps are deleted.
    154154        my $remote_file;
     155        my $ipp_disk;
     156        #  ${remote_root}/tmp/${ipp_disk}
    155157        (undef,$remote_file) = &uri_to_outputs($warp_path_base . ".fits");
    156         print COMPMAP "${warp_path_base}.fits $remote_file\n";
     158        ($ipp_disk,undef)    = &uri_convert($warp_path_base . ".fits");
     159        print COMPMAP "$remote_file ${remote_root}/tmp/${ipp_disk}\n";
    157160        (undef,$remote_file) = &uri_to_outputs($warp_path_base . ".wt.fits");
    158         print COMPMAP "${warp_path_base}.wt.fits $remote_file\n";
     161        ($ipp_disk,undef)    = &uri_convert($warp_path_base . ".wt.fits");
     162        print COMPMAP "$remote_file ${remote_root}/tmp/${ipp_disk}\n";
    159163        (undef,$remote_file) = &uri_to_outputs($warp_path_base . ".mask.fits");
    160         print COMPMAP "${warp_path_base}.maskfits $remote_file\n";
     164        ($ipp_disk,undef)    = &uri_convert($warp_path_base . ".mask.fits");
     165        print COMPMAP "$remote_file ${remote_root}/tmp/${ipp_disk}\n";
    161166        (undef,$remote_file) = &uri_to_outputs($warp_path_base . ".cmf");
    162         print COMPMAP "${warp_path_base}.cmf $remote_file\n";
     167        ($ipp_disk,undef)    = &uri_convert($warp_path_base . ".cmf");
     168        print COMPMAP "$remote_file ${remote_root}/tmp/${ipp_disk}\n";
    163169        (undef,$remote_file) = &uri_to_outputs($warp_path_base . ".psf");
    164         print COMPMAP "${warp_path_base}.psf $remote_file\n";
     170        ($ipp_disk,undef)    = &uri_convert($warp_path_base . ".psf");
     171        print COMPMAP "$remote_file ${remote_root}/tmp/${ipp_disk}\n";
    165172    }
    166173
Note: See TracChangeset for help on using the changeset viewer.