IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2007, 12:20:56 PM (19 years ago)
Author:
Paul Price
Message:

Fixing compilation errors.

File:
1 edited

Legend:

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

    r11316 r11319  
    88
    99use IPC::Cmd qw( can_run run );
    10 use PS::IPP::Metadata::Config qw(
     10use PS::IPP::Metadata::Config;
     11use PS::IPP::Metadata::List qw( parse_md_list );
     12use Statistics::Descriptive;
     13
     14use PS::IPP::Config qw(
    1115    $PS_EXIT_SUCCESS
    1216    $PS_EXIT_UNKNOWN_ERROR
     
    1721    $PS_EXIT_TIMEOUT_ERROR
    1822    );
    19 use PS::IPP::Metadata::List qw( parse_md_list );
    20 use Statistics::Descriptive;
    21 
    22 use PS::IPP::Config;
    2323my $ipprc = PS::IPP::Config->new(); # IPP configuration
    2424use File::Spec;
     
    7272        run(command => $command, verbose => 1);
    7373    unless ($success) {
    74         $error_code >> 8;
     74        $error_code = $error_code >> 8;
    7575        &my_die("Unable to perform ppImage: $error_code", $det_id, $iter, $error_code);
    7676    }
     
    164164        run(command => $command, verbose => 1);
    165165    unless ($success) {
    166         $error_code >> 8;
     166        $error_code = $error_code >> 8;
    167167        &my_die("Unable to perform dettool -addnormalizedexp: $error_code", $det_id, $iter, $error_code);
    168168    }
Note: See TracChangeset for help on using the changeset viewer.