IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2007, 8:30:27 AM (19 years ago)
Author:
eugene
Message:

PS::IPP:Metadata::Stats may result in 0, which should not be interpretted as NAN; if the value is NAN, the stats function returns NAN

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_norm_apply.pl

    r13748 r13989  
    124124
    125125# Update the database
    126 my $bg = ($stats->bg_mean() or 'NAN');
    127 my $bg_stdev = ($stats->bg_stdev() or 'NAN');
    128 my $bg_mean_stdev = ($stats->bg_mean_stdev() or 'NAN');
     126my $bg            = $stats->bg_mean();
     127my $bg_stdev      = $stats->bg_stdev();
     128my $bg_mean_stdev = $stats->bg_mean_stdev();
    129129
    130130unless ($no_update) {
Note: See TracChangeset for help on using the changeset viewer.