- Timestamp:
- Jan 11, 2015, 2:05:35 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-20140904
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psphot/src/psphotSetNFrames.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140904
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20140904/psphot/src/psphotSetNFrames.c
r33691 r37804 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.
