Changeset 30168
- Timestamp:
- Dec 24, 2010, 3:20:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20101205/psphot/src/psphotCheckStarDistribution.c
r19909 r30168 34 34 pmSource *source = stars->data[i]; 35 35 if (source->peak == NULL) continue; 36 if (!(source-> mode & PM_SOURCE_MODE_PSFSTAR)) continue;36 if (!(source->tmpFlags & PM_SOURCE_TMPF_CANDIDATE_PSFSTAR)) continue; 37 37 38 38 int binX = psImageBinningGetRuffX (binning, source->peak->xf); … … 85 85 if (source->peak == NULL) continue; 86 86 if (source->moments == NULL) continue; 87 if (source-> mode & PM_SOURCE_MODE_PSFSTAR) continue;87 if (source->tmpFlags & PM_SOURCE_TMPF_CANDIDATE_PSFSTAR) continue; 88 88 if (source->mode & PM_SOURCE_MODE_SATSTAR) continue; 89 89 if (source->type != PM_SOURCE_TYPE_STAR) continue; … … 97 97 if (y > Ye) continue; 98 98 99 source-> mode |= PM_SOURCE_MODE_PSFSTAR;99 source->tmpFlags |= PM_SOURCE_TMPF_CANDIDATE_PSFSTAR; 100 100 psArrayAdd (stars, 200, source); 101 101
Note:
See TracChangeset
for help on using the changeset viewer.
