* Enhancements for XFEL

* Enhancements for EIGER
* Writer is more flexible and capable of handling DECTRIS data
This commit is contained in:
2024-03-05 20:41:47 +01:00
parent 71d862b706
commit d315506633
165 changed files with 5440 additions and 2230 deletions
+2 -2
View File
@@ -10,7 +10,7 @@
#include "../common/JFJochException.h"
#include "../common/Definitions.h"
#include "../jungfrau/jf_packet.h"
#include "../jungfrau/sls_packet.h"
UDPSimulator::UDPSimulator(const std::vector<uint16_t> &in_image) : image(in_image) {
if (image.size() != RAW_MODULE_SIZE)
@@ -47,7 +47,7 @@ void UDPSimulator::SendImage(const std::string &ipv4_dest_addr,
uint16_t half_module_number = 2 * module_number;
jf_udp_payload packet{
.framenum = frame_number,
.xCoord = half_module_number
.row = half_module_number
};
for (int i = 0; i < 128; i++) {