From 771eea4535a1f45052836c51662e27efbc796963 Mon Sep 17 00:00:00 2001 From: Eli Rykoff Date: Mon, 16 Dec 2024 10:58:55 -0800 Subject: [PATCH] Restore initial absolute calibration bit. --- python/lsst/the/monster/measure_colorterms.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/lsst/the/monster/measure_colorterms.py b/python/lsst/the/monster/measure_colorterms.py index fab3e0c..d58a62e 100644 --- a/python/lsst/the/monster/measure_colorterms.py +++ b/python/lsst/the/monster/measure_colorterms.py @@ -656,11 +656,12 @@ def custom_target_catalog_reader(self): stars[f"comcam_{band}_flux"] = flux*units.nJy stars[f"comcam_{band}_fluxErr"] = flux_err*units.nJy - # self.apply_c26202_calibration(stars) + # This is useful for getting the color ranges to match up consistently. + self.apply_comcam_c26202_calibration(stars) return stars - def apply_c26202_calibration(self, stars): + def apply_comcam_c26202_calibration(self, stars): """Apply C26202 absolute calibration to a catalog. Parameters