- Timestamp:
- Sep 30, 2013, 5:41:48 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130904/psphot/src/psphotMergeSources.c
r36156 r36161 188 188 psFree (detections); 189 189 190 if (! extCMF && !extSourcesTXT) {190 if (!(extCMF || extCFF || extSourcesTXT)) { 191 191 psLogMsg ("psphot", 3, "no external sources for this readout"); 192 192 return true; … … 194 194 195 195 int nCMF = extCMF ? extCMF->allSources->n : 0; 196 int nTXT = extSourcesTXT ? extSourcesTXT->n : 0; 197 198 psLogMsg ("psphot", 3, "%d external sources (%d cmf, %d text) merged to yield %ld total sources", 199 nCMF + nTXT, nCMF, nTXT, sources->n); 196 int nCFF = extCFF ? extCFF->allSources->n : 0; 197 int nTXT = extSourcesTXT ? extSourcesTXT->n : 0; 198 199 psLogMsg ("psphot", 3, "%d external sources (%d cmf, %d cff, %d text) merged to yield %ld total sources", 200 nCMF + nCFF + nTXT, nCMF, nCFF, nTXT, sources->n); 200 201 return true; 201 202 }
Note:
See TracChangeset
for help on using the changeset viewer.
