Changeset 23580 for branches/pap/psphot/src/psphotDefineFiles.c
- Timestamp:
- Mar 27, 2009, 4:46:10 PM (17 years ago)
- File:
-
- 1 edited
-
branches/pap/psphot/src/psphotDefineFiles.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap/psphot/src/psphotDefineFiles.c
r14892 r23580 1 1 # include "psphotInternal.h" 2 3 // List of output files 4 static const char *outputFiles = { "PSPHOT.OUTPUT", "PSPHOT.RESID", "PSPHOT.BACKMDL", "PSPHOT.BACKMDL.STDEV", 5 "PSPHOT.BACKGND", "PSPHOT.BACKSUB", "PSPHOT.PSF.SAVE", 6 "SOURCE.PLOT.MOMENTS", "SOURCE.PLOT.PSFMODEL", "SOURCE.PLOT.APRESID", 7 NULL }; 2 8 3 9 // XXX we need to be able to distinguish several cases: … … 133 139 return true; 134 140 } 141 142 void psphotFilesActivate(pmConfig *config, bool state) 143 { 144 for (int i = 0; outputFiles[i]; i++) { 145 if (!pmFPAfileActivate(config->files, state, outputFiles[i])) { 146 psErrorClear(); 147 } 148 } 149 150 return; 151 }
Note:
See TracChangeset
for help on using the changeset viewer.
