Changeset 10398 for trunk/ippScripts/scripts/phase0_imfile.pl
- Timestamp:
- Dec 1, 2006, 1:12:34 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/phase0_imfile.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/phase0_imfile.pl
r9696 r10398 120 120 } 121 121 122 push @command, P0TOOL_BG_MEAN(), $stats->bg_mean(), P0TOOL_BG_STDEV(); 122 push @command, P0TOOL_BG_MEAN(); 123 if (defined $stats->bg_mean()) { 124 push @command, $stats->bg_mean(); 125 } else { 126 push @command, "NAN"; 127 } 128 push @command, P0TOOL_BG_STDEV(); 123 129 if (defined($stats->bg_stdev())) { 124 130 push @command, $stats->bg_stdev(); … … 127 133 push @command, 0; 128 134 } 129 push @command, P0TOOL_BG_MEAN_STDEV(), $stats->bg_mean_stdev(); 135 push @command, P0TOOL_BG_MEAN_STDEV(); 136 if (defined $stats->bg_mean_stdev()) { 137 push @command, $stats->bg_mean_stdev(); 138 } else { 139 push @command, "NAN"; 140 } 130 141 131 142 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note:
See TracChangeset
for help on using the changeset viewer.
