This commit is contained in:
2021-07-02 19:49:37 +02:00
parent c30716db12
commit 2d913b901d
7 changed files with 124 additions and 42 deletions

View File

@ -11,6 +11,9 @@ class HDF5MasterFile : private virtual slsDetectorDefs, public File {
~HDF5MasterFile();
void CloseFile() override;
void LinkDataFile(std::string dataFilename, std::string dataSetname,
const std::vector<std::string> parameterNames,
const bool silentMode) override;
void CreateMasterFile(const std::string filePath,
const std::string fileNamePrefix,
const uint64_t fileIndex, const bool overWriteEnable,
@ -20,4 +23,5 @@ class HDF5MasterFile : private virtual slsDetectorDefs, public File {
private:
std::mutex *hdf5Lib_;
H5File *fd_{nullptr};
std::string fileName_;
};