* Enhancements for EIGER * Writer is more flexible and capable of handling DECTRIS data
23 lines
766 B
C++
23 lines
766 B
C++
// Copyright (2019-2024) Paul Scherrer Institute
|
|
|
|
#ifndef JUNGFRAUJOCH_HDF5DATAFILEPLUGINJUNGFRAU_H
|
|
#define JUNGFRAUJOCH_HDF5DATAFILEPLUGINJUNGFRAU_H
|
|
|
|
#include "HDF5DataFilePlugin.h"
|
|
|
|
class HDF5DataFilePluginJUNGFRAU : public HDF5DataFilePlugin {
|
|
bool enable = false;
|
|
|
|
std::unique_ptr<HDF5DataSet> data_set_jf_info = nullptr;
|
|
std::unique_ptr<HDF5DataSet> data_set_storage_cell = nullptr;
|
|
std::unique_ptr<HDF5DataSet> data_set_receiver_aq_dev_delay = nullptr;
|
|
public:
|
|
void SetupSWMRFile(HDF5File &data_file, const DataMessage& msg) override;
|
|
void OpenFile(HDF5File &data_file, const DataMessage& msg) override;
|
|
void Write(const DataMessage& msg) override;
|
|
void Flush() override;
|
|
};
|
|
|
|
|
|
#endif //JUNGFRAUJOCH_HDF5DATAFILEPLUGINJUNGFRAU_H
|