mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-11 11:55:35 +02:00
18 lines
341 B
C++
18 lines
341 B
C++
#ifndef SF_DAQ_BUFFER_BROKER_FORMAT_HPP
|
|
#define SF_DAQ_BUFFER_BROKER_FORMAT_HPP
|
|
|
|
#include "formats.hpp"
|
|
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
struct StoreStream {
|
|
std::string output_file;
|
|
int64_t run_id;
|
|
uint64_t image_id;
|
|
uint32_t i_image;
|
|
uint32_t n_images;
|
|
};
|
|
#pragma pack(pop)
|
|
#endif //SF_DAQ_BUFFER_BROKER_FORMAT_HPP
|