Changeset 33464
- Timestamp:
- Mar 9, 2012, 2:07:46 PM (14 years ago)
- Location:
- tags/ipp-20120216
- Files:
-
- 2 edited
-
psModules/src/objects/pmSourceIO.c (modified) (1 diff, 1 prop)
-
psphot/src/psphotStackMatchPSFsPrepare.c (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20120216/psModules/src/objects/pmSourceIO.c
- Property svn:mergeinfo set to
r33445 r33464 1071 1071 if (source->seq < 0) { 1072 1072 // This can happen cmf files that have been corrupted 1073 psError(PS_ERR_IO, true, "seq < 0 for source %ld in %s", i, file->origname);1073 psError(PS_ERR_IO, true, "seq < 0 for source %ld: Suspect %s is corrupt", i, file->origname); 1074 1074 return false; 1075 1075 } -
tags/ipp-20120216/psphot/src/psphotStackMatchPSFsPrepare.c
- Property svn:mergeinfo set to (toggle deleted branches)
r32348 r33464 32 32 pmDetections *detections = psMetadataLookupPtr(NULL, readout->analysis, "PSPHOT.DETECTIONS"); // Sources 33 33 if (!detections || !detections->allSources) { 34 psWarning("No detections found for image %d --- rejecting.", index); 35 options->inputMask->data.PS_TYPE_VECTOR_MASK_DATA[index] = 0x01;36 return true; // XXX not an error: we continue processing other images 34 // An input must have sources. If we got here without any the input file was likely corrupt 35 psError(PSPHOT_ERR_IO, true, "Input %d has no sources.\n\tCheck all instances of: %s", index, inputSrc->origname); 36 return false; 37 37 } 38 38 psAssert (detections->allSources, "missing sources?");
Note:
See TracChangeset
for help on using the changeset viewer.
