Skip to content

Commit

Permalink
instnam
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkalmbach committed Nov 16, 2023
1 parent 783c2fe commit adfcf01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/lsst/ts/imsim/closed_loop_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit adfcf01

Please sign in to comment.