IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25360


Ignore:
Timestamp:
Sep 13, 2009, 4:57:05 PM (17 years ago)
Author:
eugene
Message:

skip unneeded warnings about peak flux and value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20090715/psphot/src/psphotFindPeaks.c

    r25271 r25360  
    3131        peak->SN = sqrt(peak->value);
    3232        peak->flux = readout->image->data.F32[peak->y-row0][peak->x-col0];
    33         if (peak->flux / peak->value > 5.0/12.0) {
    34             psWarning ("odd peak levels (1)");
    35         }
    36         if (peak->value / peak->flux > 5*12.0) {
    37             psWarning ("odd peak levels (2)");
    38         }
     33        // if (peak->flux / peak->value > 5.0/12.0) {
     34        //     psWarning ("odd peak levels (1)");
     35        // }
     36        // if (peak->value / peak->flux > 5*12.0) {
     37        //     psWarning ("odd peak levels (2)");
     38        // }
    3939        if (readout->variance && isfinite (peak->dx)) {
    4040            peak->dx *= sqrt(readout->variance->data.F32[peak->y-row0][peak->x-col0]);
Note: See TracChangeset for help on using the changeset viewer.