Skip to content

Commit

Permalink
Merge pull request #42 from lsst-ts/tickets/DM-44021
Browse files Browse the repository at this point in the history
Tickets/DM-44021: fix default pointer names
  • Loading branch information
suberlak authored May 16, 2024
2 parents 7321b34 + 41582de commit 95f856c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions doc/versionHistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
##################
Version History
##################
-------------
1.5.4
-------------

* Fix default pointer names in _generate_images.

-------------
1.5.3
Expand Down
4 changes: 2 additions & 2 deletions python/lsst/ts/imsim/closed_loop_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,9 +616,9 @@ def _generate_images(
if cam_type == CamType.LsstCam:
default_pointer = "lsstCamDefaultPointer.yaml"
elif cam_type == CamType.LsstFamCam:
default_pointer = "lsstFamCamDefaultPointer.yaml"
default_pointer = "lsstFamNoPertPointer.yaml"
elif cam_type == CamType.ComCam:
default_pointer = "lsstComCamDefaultPointer.yaml"
default_pointer = "lsstComCamNoPertPointer.yaml"
imsim_config_pointer_file = os.path.join(get_config_dir(), default_pointer)

base_config_yaml = self.imsim_cmpt.assemble_config_yaml(
Expand Down

0 comments on commit 95f856c

Please sign in to comment.