Changeset 13989 for trunk/ippScripts/scripts/detrend_stack.pl
- Timestamp:
- Jun 27, 2007, 8:30:27 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_stack.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_stack.pl
r13946 r13989 134 134 } 135 135 136 my $bg = ($stats->bg_mean() or 'NAN');137 my $bg_stdev = ($stats->bg_stdev() or 'NAN');138 my $bg_mean_stdev = ($stats->bg_mean_stdev() or 'NAN');136 my $bg = $stats->bg_mean(); 137 my $bg_stdev = $stats->bg_stdev(); 138 my $bg_mean_stdev = $stats->bg_mean_stdev(); 139 139 140 140 # Add the resultant into the database 141 141 unless ($no_update) { 142 my $command = "$dettool -addstacked -det_id $det_id -iteration $iter -class_id $class_id" . 143 " -uri $outputStack -recip $recipe"; # Command to run 142 my $command = "$dettool -addstacked"; 143 $command .= " -det_id $det_id -iteration $iter"; 144 $command .= " -class_id $class_id"; 145 $command .= " -uri $outputStack"; 146 $command .= " -recip $recipe"; 144 147 $command .= " -bg $bg -bg_stdev $bg_stdev -bg_mean_stdev $bg_mean_stdev"; 145 148 $command .= " -dbname $dbname" if defined $dbname;
Note:
See TracChangeset
for help on using the changeset viewer.
