Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-5385 #35

Merged
merged 1 commit into from
Mar 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 4 additions & 6 deletions python/lsst/pipe/tasks/measurePsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,10 @@ def __init__(self, schema=None, **kwargs):
doc=("Flag set if the source was actually used for PSF determination, "
"as determined by the '%s' PSF determiner.") % self.config.psfDeterminer.name
)
if self.config.reserveFraction > 0:
self.reservedKey = schema.addField(
"calib_psfReserved", type="Flag",
doc=("Flag set if the source was selected as a PSF candidate, but was "
"reserved from the PSF fitting."))

self.reservedKey = schema.addField(
"calib_psfReserved", type="Flag",
doc=("Flag set if the source was selected as a PSF candidate, but was "
"reserved from the PSF fitting."))
else:
self.candidateKey = None
self.usedKey = None
Expand Down