From 3e9787aecf6c4882fa9a9f476bce3f046f5f954b Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Thu, 16 Oct 2025 18:40:08 +0200 Subject: [PATCH] added prefix --- dap/accumulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dap/accumulator.py b/dap/accumulator.py index 13f4e15..e366e7f 100644 --- a/dap/accumulator.py +++ b/dap/accumulator.py @@ -76,7 +76,7 @@ def accumulate(accumulator_addr, bsread_port): for pulse_id, data in ready: timestamp = results["timestamp"] timestamp = make_bsread_timestamp(timestamp, pulse_id) - data["bsread_timestamp_secs"], data["bsread_timestamp_nanos"] = timestamp + data[f"{detector}:bsread_timestamp_secs"], data[f"{detector}:bsread_timestamp_nanos"] = timestamp sender.send(pulse_id=pulse_id, data=data, timestamp=timestamp)