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-14997: Implement RFC-498: homogenize naming of calibration flags #37

Merged
merged 1 commit into from
Aug 22, 2018
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
4 changes: 2 additions & 2 deletions python/lsst/meas/mosaic/mosaicTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class MosaicConfig(pexConfig.Config):
psfStarForStarSelection = pexConfig.Field(
doc="PSF star flag for star selection",
dtype=str,
default="calib_psfUsed")
default="calib_psf_used")
calibStarForStarSelection = pexConfig.Field(
doc="Calibration star detected as an icSrc flag for star selection",
dtype=str,
Expand Down Expand Up @@ -233,7 +233,7 @@ def selectStars(self, sources, includeSaturated=False):
""" Return a list of stellar like objects selected from input sources

Stellarity will be judged based mainly on extendedness (base_ClassificationExtendedness_value).
If an object is used to determine PSF (calib.psf.used == True), it will be included.
If an object is used to determine PSF (calib_psf_used == True), it will be included.
Blended objects (with either parent or nChild > 0) will not be included by default.
Saturated objects (base_PixelFlags_flag_saturated) will not be included by default.
"""
Expand Down