IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35180 for trunk/psphot/src


Ignore:
Timestamp:
Feb 19, 2013, 6:13:41 PM (13 years ago)
Author:
watersc1
Message:

I think I've tracked the bug down to being an uninitialized boolean in the extFitAll code. Committing this change that sets that boolean to false by default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotSourceSize.c

    r35038 r35180  
    423423    psLogMsg("psModules.objects", PS_LOG_INFO, "Source Size classifications: %4s %4s %4s %4s %4s", "Npsf", "Next", "Nsat", "Ncr", "Nskip");
    424424    // Determine if this readout is above the threshold to ext fit all sources
     425    options->extFitAllReadout = false;
    425426    if (options->extFitAll) {
    426427      float maskFrac = psMetadataLookupF32(&status,readout->analysis,"READOUT.MASK.FRAC");
     
    584585        // the EXT_LIMIT flag
    585586        if (options->extFitAllReadout) {
     587          psTrace("psphotSourceClassRegion.EXTALT",10,"In extFitAll: %d %d\n",options->extFitAll,options->extFitAllReadout);
    586588          source->mode |= PM_SOURCE_MODE_EXT_LIMIT;
    587589        }
Note: See TracChangeset for help on using the changeset viewer.