IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16519


Ignore:
Timestamp:
Feb 15, 2008, 12:36:40 PM (18 years ago)
Author:
Paul Price
Message:

Now use filerules to determine file names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_stack.pl

    r16308 r16519  
    118118$ipprc->outroot_prepare($outroot);
    119119
    120 ## XXX should we be using the filerules here?
    121 my $outputStack = $outroot . '.fits'; # Output name
    122 my $outputStats = $outroot . '.stats'; # Statistics name
    123 my $traceDest   = $outroot . '.trace'; # Trace messages
    124 my $logDest     = $outroot . '.log'; # Log messages
     120my $outputStack = $ipprc->filename("PPMERGE.OUTPUT", $outroot, $class_id) or &my_die("Missing entry in file rules", $det_id, $iter, $class_id, $PS_EXIT_CONFIG_ERROR); # Output name
     121my $outputStats = $ipprc->filename("PPIMAGE.STATS",  $outroot, $class_id) or &my_die("Missing entry in file rules", $det_id, $iter, $class_id, $PS_EXIT_CONFIG_ERROR); # Statistics name
     122my $traceDest   = $ipprc->filename("TRACE.IMFILE",   $outroot, $class_id) or &my_die("Missing entry in file rules", $det_id, $iter, $class_id, $PS_EXIT_CONFIG_ERROR); # Trace messages
     123my $logDest     = $ipprc->filename("LOG.IMFILE",     $outroot, $class_id) or &my_die("Missing entry in file rules", $det_id, $iter, $class_id, $PS_EXIT_CONFIG_ERROR); # Log messages
     124
    125125
    126126$command = "$ppMerge $outputStack"; # Command to run
Note: See TracChangeset for help on using the changeset viewer.