Skip to content

Commit

Permalink
Merge pull request #365 from lsst/tickets/DM-42663
Browse files Browse the repository at this point in the history
DM-42663: Change RequireUnresolved to use moments-based classifier by default.
  • Loading branch information
erykoff authored Feb 29, 2024
2 parents d99fdf4 + 18a8f07 commit ab1f63e
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.
Values below the threshold are 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 ab1f63e

Please sign in to comment.