Changeset 13989 for trunk/ippScripts/scripts/detrend_process_imfile.pl
- Timestamp:
- Jun 27, 2007, 8:30:27 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/detrend_process_imfile.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/detrend_process_imfile.pl
r13946 r13989 112 112 } 113 113 114 my $bg = ($stats->bg_mean() or 'NAN');115 my $bg_stdev = ($stats->bg_stdev() or 'NAN');116 my $bg_mean_stdev = ($stats->bg_mean_stdev() or 'NAN');114 my $bg = $stats->bg_mean(); 115 my $bg_stdev = $stats->bg_stdev(); 116 my $bg_mean_stdev = $stats->bg_mean_stdev(); 117 117 118 118 # Add the processed file to the database 119 119 unless ($no_update) { 120 my $command = "$dettool -addprocessedimfile -det_id $det_id -exp_tag $exp_tag " . 121 "-class_id $class_id -recip $recipe -uri $outputImage -path_base $outputRoot"; # Command to run dettool 120 my $command = "$dettool -addprocessedimfile"; 121 $command .= " -det_id $det_id"; 122 $command .= " -exp_tag $exp_tag"; 123 $command .= " -class_id $class_id"; 124 $command .= " -recip $recipe"; 125 $command .= " -uri $outputImage -path_base $outputRoot"; 122 126 $command .= " -bg $bg -bg_stdev $bg_stdev -bg_mean_stdev $bg_mean_stdev"; 123 127 $command .= " -dbname $dbname" if defined $dbname;
Note:
See TracChangeset
for help on using the changeset viewer.
