Skip to content

Commit

Permalink
Adding some docustrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Toennis committed Jul 25, 2024
1 parent dce4ef2 commit 681ecca
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ctapipe/io/interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ def _read_parameter_table(self, tel_id):


class PointingInterpolator(Interpolator):
"""
Interpolator for pointing and pointing correction data
"""

table_location = "/dl0/monitoring/telescope/pointing"

def __call__(self, tel_id, time):
Expand Down Expand Up @@ -193,6 +197,10 @@ def add_table(self, tel_id, input_table):


class CalibrationInterpolator(Interpolator):
"""
Interpolator for calibration data
"""

table_location = "dl1/calibration" # TBD

def __call__(self, tel_id, time):
Expand Down

0 comments on commit 681ecca

Please sign in to comment.