Changeset 11319 for trunk/ippScripts/scripts/detrend_norm_exp.pl
- Timestamp:
- Jan 26, 2007, 12:20:56 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_norm_exp.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_norm_exp.pl
r11316 r11319 8 8 9 9 use IPC::Cmd qw( can_run run ); 10 use PS::IPP::Metadata::Config qw( 10 use PS::IPP::Metadata::Config; 11 use PS::IPP::Metadata::List qw( parse_md_list ); 12 use Statistics::Descriptive; 13 14 use PS::IPP::Config qw( 11 15 $PS_EXIT_SUCCESS 12 16 $PS_EXIT_UNKNOWN_ERROR … … 17 21 $PS_EXIT_TIMEOUT_ERROR 18 22 ); 19 use PS::IPP::Metadata::List qw( parse_md_list );20 use Statistics::Descriptive;21 22 use PS::IPP::Config;23 23 my $ipprc = PS::IPP::Config->new(); # IPP configuration 24 24 use File::Spec; … … 72 72 run(command => $command, verbose => 1); 73 73 unless ($success) { 74 $error_code >> 8;74 $error_code = $error_code >> 8; 75 75 &my_die("Unable to perform ppImage: $error_code", $det_id, $iter, $error_code); 76 76 } … … 164 164 run(command => $command, verbose => 1); 165 165 unless ($success) { 166 $error_code >> 8;166 $error_code = $error_code >> 8; 167 167 &my_die("Unable to perform dettool -addnormalizedexp: $error_code", $det_id, $iter, $error_code); 168 168 }
Note:
See TracChangeset
for help on using the changeset viewer.
