changes in jungfrau header package for 5.0.0 slsDetector version

This commit is contained in:
Dmitry Ozerov
2020-11-20 11:50:34 +01:00
committed by Data Backend account
parent c64299481e
commit 5dd111bde3
+3 -4
View File
@@ -4,16 +4,15 @@
#include <cstdint>
#define JUNGFRAU_N_MODULES 32
#define JUNGFRAU_BYTES_PER_PACKET 8246
#define JUNGFRAU_BYTES_PER_PACKET 8240
#define JUNGFRAU_DATA_BYTES_PER_PACKET 8192
#define JF_N_PACKETS_PER_FRAME 128
#define JUNGFRAU_DATA_BYTES_PER_FRAME 1048576
// 6 bytes + 48 bytes + 8192 bytes = 8246 bytes
// 48 bytes + 8192 bytes = 8240 bytes
#pragma pack(push)
#pragma pack(2)
struct jungfrau_packet {
char emptyheader[6];
uint64_t framenum;
uint32_t exptime;
uint32_t packetnum;
@@ -35,4 +34,4 @@ struct jungfrau_packet {
#pragma pack(pop)
#endif
#endif