Skip to content

Commit

Permalink
fix AdvCam
Browse files Browse the repository at this point in the history
  • Loading branch information
TjarkMiener committed Feb 6, 2025
1 parent 35214a3 commit ac5e7dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dl1_data_handler/image_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ def _get_grids_for_oversampling(
]
)
# Adjust for odd tick_diff
# TODO: Check why MAGICCam and VERITAS do not need this adjustment
if tick_diff % 2 != 0 and self.camera_type not in ["MAGICCam", "VERITAS"]:
# TODO: Check why MAGICCam, VERITAS, and UNKNOWN-7987PX (AdvCam) do not need this adjustment
if tick_diff % 2 != 0 and self.camera_type not in ["MAGICCam", "VERITAS", "UNKNOWN-7987PX"]:
grid_second.insert(
0,
np.around(
Expand Down

0 comments on commit ac5e7dd

Please sign in to comment.