Skip to content

Commit

Permalink
run_id -> local_run_id
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Jun 19, 2023
1 parent 6499e06 commit bfe369e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ctapipe_io_lst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,17 +333,17 @@ def __init__(self, input_url=None, **kwargs):
pointing_mode = PointingMode.TRACK

self._scheduling_blocks = {
self.run_id: SchedulingBlockContainer(
sb_id=np.uint64(self.run_id),
self.local_run_id: SchedulingBlockContainer(
sb_id=np.uint64(self.local_run_id),
producer_id=f"LST-{self.tel_id}",
pointing_mode=pointing_mode,
)
}

self._observation_blocks = {
self.run_id: ObservationBlockContainer(
obs_id=np.uint64(self.run_id),
sb_id=np.uint64(self.run_id),
self.local_run_id: ObservationBlockContainer(
obs_id=np.uint64(self.local_run_id),
sb_id=np.uint64(self.local_run_id),
producer_id=f"LST-{self.tel_id}",
actual_start_time=self.run_start,
**target_info
Expand Down

0 comments on commit bfe369e

Please sign in to comment.