Changeset 9269
- Timestamp:
- Oct 4, 2006, 3:14:03 PM (20 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 4 edited
-
psphotApResid.c (modified) (1 diff)
-
psphotImageLoop.c (modified) (1 diff)
-
psphotReadout.c (modified) (1 diff)
-
psphotVersion.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotApResid.c
r8817 r9269 72 72 // XXX need to put this in the config data... 73 73 // if (fabs(apResid->data.F64[Npsf]) > 0.2) continue; 74 if ( fabs(apResid->data.F64[Npsf]) > MAX_AP_OFFSET) {74 if ((MAX_AP_OFFSET > 0) && (fabs(apResid->data.F64[Npsf]) > MAX_AP_OFFSET)) { 75 75 Nfail ++; 76 76 continue; -
trunk/psphot/src/psphotImageLoop.c
r8780 r9269 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 # include "psphot.h" 6 2 -
trunk/psphot/src/psphotReadout.c
r8780 r9269 96 96 // measure aperture photometry corrections 97 97 if (!psphotApResid (readout, sources, recipe, psf)) { 98 psTrace ("psphotReadout", 4, "failure on psphotApResid"); 98 99 psError(PSPHOT_ERR_PHOTOM, false, "Measure aperture photometry corrections"); 100 psphotReadoutCleanup (config, readout, recipe, psf, sources); 99 101 return false; 100 102 } -
trunk/psphot/src/psphotVersion.c
r8780 r9269 1 #ifdef HAVE_CONFIG_H2 #include <config.h>3 #endif4 5 1 #include "psphot.h" 6 2
Note:
See TracChangeset
for help on using the changeset viewer.
