* date/time tag * initial tag self-described CBOR * series ID * fixes to typed array header in case of compression
21 lines
424 B
C++
21 lines
424 B
C++
// Copyright (2019-2022) Paul Scherrer Institute
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef JUNGFRAUJOCH_ENDMESSAGE_H
|
|
#define JUNGFRAUJOCH_ENDMESSAGE_H
|
|
|
|
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;
|
|
};
|
|
|
|
#endif //JUNGFRAUJOCH_ENDMESSAGE_H
|