Changeset 23672 for branches/pap/ppSub/src/ppSubReadout.c
- Timestamp:
- Apr 1, 2009, 5:17:21 PM (17 years ago)
- File:
-
- 1 edited
-
branches/pap/ppSub/src/ppSubReadout.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap/ppSub/src/ppSubReadout.c
r23599 r23672 21 21 #include "ppSub.h" 22 22 23 bool ppSubReadout(pmConfig *config, p sMetadata *stats, const pmFPAview *view)23 bool ppSubReadout(pmConfig *config, ppSubData *data, const pmFPAview *view) 24 24 { 25 25 psTimerStart("PPSUB_MATCH"); … … 30 30 } 31 31 32 if (!ppSubMatchPSFs(config, view)) {32 if (!ppSubMatchPSFs(config, data, view)) { 33 33 psError(PS_ERR_UNKNOWN, false, "Unable to match PSFs."); 34 34 return false; … … 40 40 } 41 41 42 if (! ppSubMakePSF(config, stats, view)) {42 if (!data->quality && !ppSubMakePSF(config, data, view)) { 43 43 psError(PS_ERR_UNKNOWN, false, "Unable to generate PSF."); 44 44 return false; … … 56 56 } 57 57 58 if (! ppSubReadoutPhotometry(config, stats, view)) {58 if (!data->quality && !ppSubReadoutPhotometry(config, data, view)) { 59 59 psError(PS_ERR_UNKNOWN, false, "Unable to perform photometry."); 60 60 return false; 61 61 } 62 62 63 if (!ppSubReadoutUpdate(config, stats, view)) {63 if (!ppSubReadoutUpdate(config, data, view)) { 64 64 psError(PS_ERR_UNKNOWN, false, "Unable to update."); 65 65 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
