Skip to content

Commit

Permalink
Deprecate matchingKernelSize from coaddBase
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed Dec 4, 2024
1 parent 4ab970f commit 7840321
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/lsst/pipe/tasks/coaddBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,15 @@ class CoaddBaseConfig(pexConfig.Config):
doc="Add photometric calibration variance to warp variance plane.",
default=False
)
# TODO: Remove this field in DM-44792.
matchingKernelSize = pexConfig.Field(
dtype=int,
doc="Size in pixels of matching kernel. Must be odd.",
default=21,
check=lambda x: x % 2 == 1
check=lambda x: x % 2 == 1,
deprecated=("This field is deprecated without a replacement. Its value has no effect. "
"Will be removed after v29."
),
)


Expand Down

0 comments on commit 7840321

Please sign in to comment.