Skip to content

Commit

Permalink
Change RequireUnresolved to using sizeExtendedness by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi authored and erykoff committed Feb 28, 2024
1 parent d99fdf4 commit 5d40c8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/meas/algorithms/sourceSelector.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,15 +418,15 @@ class RequireUnresolved(BaseLimit):
the limit, and then the `apply` method can be used to identify sources
in the catalog that match the configured limit.
"""
name = pexConfig.Field(dtype=str, default="base_ClassificationExtendedness_value",
name = pexConfig.Field(dtype=str, default="base_ClassificationSizeExtendedness_value",
doc="Name of column for star/galaxy separation")

def setDefaults(self):
"""Set default
``base_ClassificationExtendedness_value < 0.5`` means unresolved.
``base_ClassificationSizeExtendedness_value < 0.1`` means unresolved.
"""
self.maximum = 0.5
self.maximum = 0.1

def apply(self, catalog):
"""Apply the flag requirements to a catalog
Expand Down

0 comments on commit 5d40c8b

Please sign in to comment.