Changeset 28013 for trunk/psphot/src/psphotRoughClass.c
- Timestamp:
- May 18, 2010, 4:11:53 PM (16 years ago)
- Location:
- trunk/psphot
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/psphotRoughClass.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot
-
Property svn:mergeinfo
set to
/branches/eam_branches/psphot.20100506 merged eligible
-
Property svn:mergeinfo
set to
-
trunk/psphot/src/psphotRoughClass.c
r27657 r28013 8 8 9 9 // for now, let's store the detections on the readout->analysis for each readout 10 bool psphotRoughClass (pmConfig *config, const pmFPAview *view )10 bool psphotRoughClass (pmConfig *config, const pmFPAview *view, const char *filerule) 11 11 { 12 12 bool status = true; … … 26 26 for (int i = 0; i < num; i++) { 27 27 if (i == chisqNum) continue; // skip chisq image 28 if (!psphotRoughClassReadout (config, view, "PSPHOT.INPUT", i, recipe)) {29 psError (PSPHOT_ERR_CONFIG, false, "failed on rough classification for PSPHOT.INPUT entry %d", i);28 if (!psphotRoughClassReadout (config, view, filerule, i, recipe)) { 29 psError (PSPHOT_ERR_CONFIG, false, "failed on rough classification for %s entry %d", filerule, i); 30 30 return false; 31 31 } … … 34 34 } 35 35 36 bool psphotRoughClassReadout (pmConfig *config, const pmFPAview *view, const char *file name, int index, psMetadata *recipe) {36 bool psphotRoughClassReadout (pmConfig *config, const pmFPAview *view, const char *filerule, int index, psMetadata *recipe) { 37 37 38 38 bool status; … … 41 41 42 42 // find the currently selected readout 43 pmFPAfile *file = pmFPAfileSelectSingle(config->files, file name, index); // File of interest43 pmFPAfile *file = pmFPAfileSelectSingle(config->files, filerule, index); // File of interest 44 44 psAssert (file, "missing file?"); 45 45
Note:
See TracChangeset
for help on using the changeset viewer.
