Skip to content

Commit

Permalink
Merge pull request #263 from lsst/tickets/DM-38741
Browse files Browse the repository at this point in the history
DM-38741: Set maxFootprintArea lower after HSC and DECam analysis
  • Loading branch information
isullivan committed May 18, 2023
2 parents 26a7fa3 + 70edcea commit e966310
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/lsst/ip/diffim/dipoleFitTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ class DipoleFitPluginConfig(measBase.SingleFramePluginConfig):
(note this is actually a significance, not a chi2 value).""")

maxFootprintArea = pexConfig.Field(
dtype=int, default=5_000,
dtype=int, default=1_200,
doc=("Maximum area for footprints before they are ignored as large; "
"non-positive means no threshold applied"))
"non-positive means no threshold applied"
"Threshold chosen for HSC and DECam data, see DM-38741 for details."))


class DipoleFitTaskConfig(measBase.SingleFrameMeasurementConfig):
Expand Down

0 comments on commit e966310

Please sign in to comment.