Skip to content

Commit

Permalink
typo found with pulse_id, may be related to out_of_order errors (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaelMo authored Sep 12, 2024
1 parent c3ad03f commit d622926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuse/plugins/pmt_and_daq/photon_pulses.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def concat_overlapping_hits(hits, extensions, pmt_channels, start, end):
strax.interval_dtype
+ [
(("End time of the interval (ns since unix epoch)", "endtime"), np.int64),
(("pulse_id"), np.int64),
((("ID of the pulse window", "pulse_id")), np.int64),
]
),
)
Expand All @@ -192,7 +192,7 @@ def concat_overlapping_hits(hits, extensions, pmt_channels, start, end):
return hits, photon_identifiers


pulse_dtype = strax.interval_dtype + [(("pulse_id"), np.int64)]
pulse_dtype = strax.interval_dtype + [((("ID of the pulse window", "pulse_id")), np.int64)]


@strax.utils.growing_result(pulse_dtype, chunk_size=int(1e4))
Expand Down

0 comments on commit d622926

Please sign in to comment.