IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 4, 2011, 1:04:41 PM (15 years ago)
Author:
eugene
Message:

updates to pmPeak to better distinguish peak flux versions; updates to visualization; add bits for substantial suspect masking; consolidate assignment of source position and flux based on peak, moments, etc; improve footprint culling process; fix PSF_QF and PSF_QF_PERFECT calculations; fix source model chisq values

Location:
trunk/psModules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules

    • Property svn:ignore
      •  

        old new  
        2828ChangeLog
        2929psmodules-*.tar.*
         30a.out.dSYM
  • trunk/psModules/src/imcombine/pmSubtractionStamps.c

    r31023 r31153  
    11921192    for (int i = 0; i < numIn; i++) {
    11931193        pmSource *source = sources->data[i]; // Source of interest
    1194         if (!source || (source->mode & SOURCE_MASK) || source->psfMag > SOURCE_FAINTEST) {
     1194        if (!source || (source->mode & SOURCE_MASK) ||(source->psfMag > SOURCE_FAINTEST)) {
    11951195            continue;
    11961196        }
    11971197       
     1198        // fprintf (stderr, "%f,%f : %f %f : %f %f\n", source->peak->xf, source->peak->yf,
     1199        // source->psfMag, source->apMag, source->psfMag - source->apMag, source->errMag);
     1200
    11981201        // XXX this is somewhat arbitrary...
    11991202        if (source->errMag > 0.05) continue;
Note: See TracChangeset for help on using the changeset viewer.