Changeset 10321
- Timestamp:
- Nov 30, 2006, 12:56:28 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_resid.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_resid.pl
r9892 r10321 123 123 124 124 # Add the processed file to the database 125 # XXX I think this has the names "bg_stdev" and "bg_mean_stdev" exchanged126 # bg_stdev : standard deviation of the background127 # bg_mean_stdev : standard deviation of the background means128 125 $outputName = File::Spec->abs2rel ($outputName, $ipprc->workdir() ); 129 126 $bin1Name = File::Spec->abs2rel( $bin1Name, $ipprc->workdir() ); … … 135 132 $command .= " -bg " . $stats->bg_mean(); 136 133 137 # XXX note bg_stdev <--> bg_mean_stdev 138 if (defined($stats->bg_stdev())) { 139 $command .= " -bg_mean_stdev " . $stats->bg_stdev(); 134 if (defined($stats->bg_mean_stdev())) { 135 $command .= " -bg_mean_stdev " . $stats->bg_mean_stdev(); 140 136 } else { 141 137 # May be undefined if there is only a single imfile … … 143 139 } 144 140 145 # XXX note bg_stdev <--> bg_mean_stdev 146 $command .= " -bg_stdev " . $stats->bg_mean_stdev(); 141 $command .= " -bg_stdev " . $stats->bg_stdev(); 147 142 148 143 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
Note:
See TracChangeset
for help on using the changeset viewer.
