From ff83967fb4bde9f853bcd119bc835e3d329ea6d1 Mon Sep 17 00:00:00 2001 From: Ian Sullivan Date: Mon, 9 Dec 2024 22:52:35 -0800 Subject: [PATCH] Use slightly lower binning for streak detection --- python/lsst/ip/diffim/detectAndMeasure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/ip/diffim/detectAndMeasure.py b/python/lsst/ip/diffim/detectAndMeasure.py index 9d0af699..6c553ac5 100644 --- a/python/lsst/ip/diffim/detectAndMeasure.py +++ b/python/lsst/ip/diffim/detectAndMeasure.py @@ -177,7 +177,7 @@ class DetectAndMeasureConfig(pipeBase.PipelineTaskConfig, ) streakBinFactor = pexConfig.Field( dtype=int, - default=4, + default=3, doc="Bin scale factor to use when rerunning detection for masking streaks. " "Only used if doMaskStreaks is True.", )