Changeset 36599
- Timestamp:
- Mar 19, 2014, 4:05:43 PM (12 years ago)
- Location:
- tags/ipp-20140114/psphot/src
- Files:
-
- 2 edited
-
psphotFullForce.SourceStats.c (modified) (1 diff)
-
psphotFullForceReadout.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20140114/psphot/src/psphotFullForce.SourceStats.c
r36375 r36599 85 85 psAssert (markVal, "missing MARK.PSPHOT"); 86 86 87 psArray *sources = detections->allSources; 87 // psArray *sources = detections->allSources; 88 psArray *sources = detections->newSources ? detections->newSources : detections->allSources; 88 89 89 90 // generate the array of sources, define the associated pixel -
tags/ipp-20140114/psphot/src/psphotFullForceReadout.c
r36375 r36599 52 52 psphotLoadExtSources (config, view, filerule); 53 53 54 #ifdef notmoved 55 // XXX: moved down below 54 56 // merge the newly selected sources into the existing list (detections->allSources) 55 57 // NOTE: merge OLD and NEW 56 58 psphotMergeSources (config, view, filerule); 59 #endif 57 60 58 61 // construct sources and measure moments and other basic stats (saved on detections->allSources) … … 63 66 return psphotReadoutCleanup (config, view, filerule); 64 67 } 68 69 // classify sources based on moments, brightness. if a PSF model has been loaded, the PSF 70 // clump defined for it is used not measured (detections->newSources) 71 if (!psphotRoughClass (config, view, filerule)) { // pass 1 72 psError (PSPHOT_ERR_UNKNOWN, false, "failed to determine rough classifications"); 73 return psphotReadoutCleanup (config, view, filerule); 74 } 75 76 // merge the newly selected sources into the existing list (detections->allSources) 77 // NOTE: merge OLD and NEW 78 psphotMergeSources (config, view, filerule); 79 65 80 66 81 // generate a psf model for any readouts which need one
Note:
See TracChangeset
for help on using the changeset viewer.
