Skip to content

Commit

Permalink
Rename constants
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Jun 6, 2019
1 parent dd59768 commit c42031d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ctapipe/coordinates/camera_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@


# Go from SimTel / HESS to MAGIC/FACT/Engineering frame and back
CAMERA_FRAME_TRANSFORM_MATRIX = np.array([
ENGINEERING_FRAME_TRANSFORM_MATRIX = np.array([
[0, -1, 0],
[-1, 0, 0],
[0, 0, 1]
])
CAMERA_FRAME_TRANSFORM_OFFSET = CartesianRepresentation(0, 0, 0, unit=u.m)
ENGINEERING_FRAME_TRANSFORM_OFFSET = CartesianRepresentation(0, 0, 0, unit=u.m)


class CameraFrame(BaseCoordinateFrame):
Expand Down

0 comments on commit c42031d

Please sign in to comment.