From 82d2245f2404f58363dec100378ef0c50712b4b4 Mon Sep 17 00:00:00 2001 From: John Franklin Crenshaw Date: Thu, 5 Dec 2024 07:46:30 -0800 Subject: [PATCH] Added joitFitPair config to task. --- python/lsst/ts/wep/task/estimateZernikesDanishTask.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/lsst/ts/wep/task/estimateZernikesDanishTask.py b/python/lsst/ts/wep/task/estimateZernikesDanishTask.py index e68ff073..de2df13c 100644 --- a/python/lsst/ts/wep/task/estimateZernikesDanishTask.py +++ b/python/lsst/ts/wep/task/estimateZernikesDanishTask.py @@ -44,6 +44,12 @@ class EstimateZernikesDanishConfig(EstimateZernikesBaseConfig): doc="Binning factor to apply to the donut stamps before estimating " + "Zernike coefficients. A value of 1 means no binning.", ) + jointFitPair = pexConfig.Field( + dtype=bool, + default=True, + doc="Whether to jointly fit intra/extra pairs, when a pair is provided. " + + "If False, Zernikes are estimated for each individually, then averaged. ", + ) class EstimateZernikesDanishTask(EstimateZernikesBaseTask):