Files
Jungfraujoch/frame_serialize/EndMessage.h

26 lines
521 B
C++

// Copyright (2019-2022) Paul Scherrer Institute
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef JUNGFRAUJOCH_ENDMESSAGE_H
#define JUNGFRAUJOCH_ENDMESSAGE_H
#include <map>
#include <vector>
struct EndMessage {
uint64_t number_of_images;
uint64_t max_receiver_delay;
float efficiency;
bool write_master_file;
std::string end_date;
std::string series_unique_id;
uint64_t series_id;
std::map<std::string, std::vector<float>> rad_int_result;
};
#endif //JUNGFRAUJOCH_ENDMESSAGE_H