Skip to content

Commit

Permalink
Fix bug in grid transmission
Browse files Browse the repository at this point in the history
  • Loading branch information
samaloney committed Nov 19, 2024
1 parent f30588c commit 6d25e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stixpy/calibration/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _calculate_grid_transmission(grid_params, xy_flare_stix):
-------
Transmission through all grids defined by the grid parameters
"""
orient = 180 * u.deg - grid_params["o"] * u.deg # As viewed from the detector side (data recorded from front)
orient = grid_params["o"] * u.deg # As viewed from the detector side (data recorded from front)
pitch = grid_params["p"]
slit = grid_params["slit"]
thick = grid_params["thick"]
Expand Down

0 comments on commit 6d25e92

Please sign in to comment.