Changeset 37607
- Timestamp:
- Nov 16, 2014, 2:08:41 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotSetNFrames.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotSetNFrames.c
r33691 r37607 45 45 46 46 pmDetections *detections = psMetadataLookupPtr (&status, readout->analysis, "PSPHOT.DETECTIONS"); 47 psAssert (detections, "missing detections?"); 48 psAssert (detections->allSources, "missing sources?"); 47 if (!detections) { 48 psLogMsg ("psphot", PS_LOG_INFO, "No detections image input %d", index); 49 return true; 50 } 49 51 50 52 psArray *sources = detections->allSources; 53 if (!sources) { 54 psLogMsg ("psphot", PS_LOG_INFO, "No sources for input %d", index); 55 return true; 56 } 51 57 52 58 int col0 = expnum->col0;
Note:
See TracChangeset
for help on using the changeset viewer.
