Skip to content

Commit

Permalink
Reduce number of g-band spline nodes for comcam.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Dec 16, 2024
1 parent d9aa07f commit 508f612
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/lsst/the/monster/measure_colorterms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]:
Expand Down

0 comments on commit 508f612

Please sign in to comment.