From 5b6ddfc5f2bc6584f259be385e5efb37f9a6f63c Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 4 May 2020 12:44:56 +0200 Subject: [PATCH] Unify data types to use a 2d HDF dataset --- core-buffer/include/jungfrau.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core-buffer/include/jungfrau.hpp b/core-buffer/include/jungfrau.hpp index 86344e9..305927e 100644 --- a/core-buffer/include/jungfrau.hpp +++ b/core-buffer/include/jungfrau.hpp @@ -36,9 +36,9 @@ struct jungfrau_packet { struct ModuleFrame { uint64_t pulse_id; uint64_t frame_index; - uint32_t daq_rec; - uint16_t n_received_packets; - uint16_t module_id; + uint64_t daq_rec; + uint64_t n_received_packets; + uint64_t module_id; }; #pragma pack(pop)