IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17165


Ignore:
Timestamp:
Mar 27, 2008, 5:11:57 PM (18 years ago)
Author:
Paul Price
Message:

Fixing syntax error.
Need to resolve filename before passing to tempfile().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_080320/ippScripts/scripts/detrend_stack.pl

    r17164 r17165  
    9393                  'FRINGE'   => 'PPMERGE.OUTPUT.FRINGE',
    9494              };
    95 my $output_filerule = $FILERULES{$det_type}; # File rule for output
     95my $output_filerule = $FILERULES->{$det_type}; # File rule for output
    9696&my_die("Unrecognised detrend type: $det_type", $det_id, $iter, $class_id, $PS_EXIT_SYS_ERROR) unless defined $output_filerule;
    9797
     
    128128
    129129# Generate MDC file with the inputs
    130 my ($listFile, $listName) = tempfile( "$outroot.$class_id.list.XXXX", UNLINK => !$save_temps );
     130my ($listFile, $listName) = tempfile( $ipprc->file_resolve("$outroot.$class_id.list.XXXX"), UNLINK => !$save_temps );
    131131my $num = 0;
    132132foreach my $file (@$files) {
Note: See TracChangeset for help on using the changeset viewer.