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-38741: Set maxFootprintArea lower after HSC and DECam analysis #263

Merged
merged 1 commit into from
May 18, 2023
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
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