IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 5:20:29 PM (17 years ago)
Author:
watersc1
Message:

Finished up my edits to the detrend cleanup, and some changes to my
copy of burntool and the pslib astrometry. Detrend cleanup has not
been tested yet. That's up next.

Location:
branches/czw_branch/cleanup
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup

  • branches/czw_branch/cleanup/ippScripts/scripts/detrend_process_imfile.pl

    r23688 r24951  
    6363    defined $outroot;
    6464
     65# force det_type to be upper-case in this script
     66$det_type = uc($det_type);
     67
    6568my $ipprc = PS::IPP::Config->new( $camera ) or my_die( "Unable to set up", $det_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR ); # IPP configuration
    6669my $logDest = $ipprc->filename("LOG.IMFILE", $outroot, $class_id) or &my_die("Missing entry from camera config", $det_id, $exp_id, $class_id, $PS_EXIT_CONFIG_ERROR);
     
    6972# Recipes to use as a function of detrend type
    7073$reduction = "DETREND" unless defined $reduction;
    71 my $ppimage_recipe = $ipprc->reduction($reduction, uc($det_type) . '_PROCESS'); # Recipe name for ppImage
    72 my $jpeg_recipe = $ipprc->reduction($reduction, uc($det_type) . '_JPEG_IMAGE'); # Recipe name for JPEG
     74my $ppimage_recipe = $ipprc->reduction($reduction, $det_type . '_PROCESS'); # Recipe name for ppImage
     75my $jpeg_recipe = $ipprc->reduction($reduction, $det_type . '_JPEG_IMAGE'); # Recipe name for JPEG
    7376
    7477# The output file rule name depends on the detrend type
     
    7982                  'DARK'             => undef,
    8083                  'DARK_PREMASK'     => undef,
     84                  'DARKTEST'         => undef,
    8185                  'CTEMASK'          => undef,
    8286                  'SHUTTER'          => 'PPIMAGE.OUTPUT.DETREND',
Note: See TracChangeset for help on using the changeset viewer.