Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix zernike average output after change to v11.2.0 in ts_wep. #49

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/versionHistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
##################
Version History
##################
-------------
1.6.3
-------------

* Fix zernike average output after change to v11.2.0 in ts_wep.

-------------
1.6.2
-------------
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ts/imsim/closed_loop_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ def run_wep(
sensor_name = det_id_map[dataset.dataId["detector"]].getName()
sensor_wavefront_data.sensor_name = sensor_name
sensor_wavefront_data.sensor_id = det_name_map[sensor_name].getId()
sensor_wavefront_data.annular_zernike_poly = zer_coeff
sensor_wavefront_data.annular_zernike_poly = zer_coeff[0]

list_of_wf_err.append(sensor_wavefront_data)

Expand Down
Loading