From adfcf01435f7872518d356249fe9d4adb67e7352 Mon Sep 17 00:00:00 2001 From: Bryce Kalmbach Date: Thu, 16 Nov 2023 11:36:05 -0800 Subject: [PATCH] instnam --- python/lsst/ts/imsim/closed_loop_task.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/lsst/ts/imsim/closed_loop_task.py b/python/lsst/ts/imsim/closed_loop_task.py index 33fac7b..aa2fdce 100644 --- a/python/lsst/ts/imsim/closed_loop_task.py +++ b/python/lsst/ts/imsim/closed_loop_task.py @@ -975,7 +975,10 @@ def write_wep_configuration( Filter type name: ref (or ''), u, g, r, i, z, or y. """ - butler_inst_name = "Cam" + if inst_name in ["lsst", "lsstfam"]: + butler_inst_name = "Cam" + elif inst_name == "comcam": + butler_inst_name = "ComCam" # Remap reference filter filter_type_name = self.map_filter_ref_to_g(filter_type_name)