From d6229267aaa7cc95d8adddcde080c37744de8d8d Mon Sep 17 00:00:00 2001 From: Saad el Morabit Date: Thu, 12 Sep 2024 09:39:04 +0200 Subject: [PATCH] typo found with pulse_id, may be related to out_of_order errors (#260) --- fuse/plugins/pmt_and_daq/photon_pulses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuse/plugins/pmt_and_daq/photon_pulses.py b/fuse/plugins/pmt_and_daq/photon_pulses.py index 89ad0d96..7be8094e 100644 --- a/fuse/plugins/pmt_and_daq/photon_pulses.py +++ b/fuse/plugins/pmt_and_daq/photon_pulses.py @@ -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), ] ), ) @@ -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))