From 508f612cbb37a6c4ed992f28b7ef76df35b12293 Mon Sep 17 00:00:00 2001 From: Eli Rykoff Date: Mon, 16 Dec 2024 11:26:59 -0800 Subject: [PATCH] Reduce number of g-band spline nodes for comcam. --- python/lsst/the/monster/measure_colorterms.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/lsst/the/monster/measure_colorterms.py b/python/lsst/the/monster/measure_colorterms.py index 66509ab..7d879a5 100644 --- a/python/lsst/the/monster/measure_colorterms.py +++ b/python/lsst/the/monster/measure_colorterms.py @@ -607,8 +607,10 @@ class ComCamSplineMeasurer(SplineMeasurer): do_check_c26202_absolute_calibration = True def n_nodes(self, band=None): - if band in [None, "g", "r", "i", "z"]: + if band in [None, "r", "i", "z"]: return 10 + elif band in ["g"]: + return 8 elif band in ["y"]: return 7 elif band in ["u"]: