18 lines
543 B
C++
18 lines
543 B
C++
// Copyright (2019-2024) Paul Scherrer Institute
|
|
|
|
#ifndef JUNGFRAUJOCH_HDF5DATAFILEPLUGINRESESTIMATION_H
|
|
#define JUNGFRAUJOCH_HDF5DATAFILEPLUGINRESESTIMATION_H
|
|
|
|
#include "HDF5DataFilePlugin.h"
|
|
|
|
class HDF5DataFilePluginResEstimation : public HDF5DataFilePlugin {
|
|
std::vector<float> res_estimation;
|
|
public:
|
|
void OpenFile(HDF5File &data_file, const DataMessage &msg) override;
|
|
void Write(const DataMessage &msg) override;
|
|
void WriteFinal(HDF5File &data_file) override;
|
|
};
|
|
|
|
|
|
#endif //JUNGFRAUJOCH_HDF5DATAFILEPLUGINRESESTIMATION_H
|