Changeset 26971 for trunk/ppSub/src/ppSubMatchPSFs.c
- Timestamp:
- Feb 16, 2010, 10:03:48 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/ppSub/src/ppSubMatchPSFs.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppSub/src/ppSubMatchPSFs.c
r26936 r26971 144 144 psAssert (refSources, "missing refSources?"); 145 145 146 float inFWHM = subImagePSF(data, inRO, inSources); // FWHM for input 147 float refFWHM = subImagePSF(data, refRO, refSources); // FWHM for reference 148 146 float inFWHM = psMetadataLookupF32(NULL, inRO->parent->parent->analysis, "CHIP.SEEING"); // FWHM for input 147 if (!isfinite(inFWHM)) { 148 inFWHM = subImagePSF(data, inRO, inSources); 149 } 150 float refFWHM = psMetadataLookupF32(NULL, refRO->parent->parent->analysis, "CHIP.SEEING"); // FWHM for ref 151 if (!isfinite(refFWHM)) { 152 refFWHM = subImagePSF(data, refRO, refSources); 153 } 149 154 psLogMsg("ppSub", PS_LOG_INFO, "Input FWHM: %f\nReference FWHM: %f\n", inFWHM, refFWHM); 150 155 if (!isfinite(inFWHM) || !isfinite(refFWHM)) {
Note:
See TracChangeset
for help on using the changeset viewer.
