IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 3, 2006, 10:04:48 AM (20 years ago)
Author:
Paul Price
Message:

Fixing so they compile.

File:
1 edited

Legend:

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

    r9141 r9145  
    5656my $b1name = $outputRoot . '.' . $classId . '.b1.fits'; # Output file with binning 1
    5757my $b2name = $outputRoot . '.' . $classId . '.b2.fits'; # Output file with binning 2
    58 my $statName = $outputRoot . '.' . $classId . '.stats'; # Statistics file
     58my $statsName = $outputRoot . '.' . $classId . '.stats'; # Statistics file
    5959
    6060# Run ppArith
    6161{
    62     my $command = "$ppImage -file $input $outputRoot -norm $value -stat $statName -recipe PPIMAGE " . RECIPE(); # Command to run
     62    my $command = "$ppImage -file $input $outputRoot -norm $value -stat $statsName -recipe PPIMAGE " . RECIPE(); # Command to run
    6363    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
    6464        run(command => $command, verbose => 1);
     
    6767    die "Can't find expected output file: $b1name\n" if not -e $b1name;
    6868    die "Can't find expected output file: $b2name\n" if not -e $b2name;
    69     die "Can't find expected output file: $statName\n" if not -e $statName;
     69    die "Can't find expected output file: $statsName\n" if not -e $statsName;
    7070}
    7171
Note: See TracChangeset for help on using the changeset viewer.