2#ifndef RIVET_RivetHDF5_HH
3#define RIVET_RivetHDF5_HH
4#include "Rivet/Config/RivetCommon.hh"
5#include "Rivet/Tools/RivetPaths.hh"
7#include "Rivet/Config/RivetConfig.hh"
8#ifdef WITH_YODA_HIGHFIVE
9#include "YODA/highfive/H5File.hpp"
11#include "highfive/H5File.hpp"
12#define YODA_H5 HighFive
19 using namespace YODA_H5;
23 inline YODA_H5::File readFile(
const string& filename) {
25 if (filepath.empty())
throw IOError(
"Failed to load HDF5 file " + filename);
27 return YODA_H5::File(filepath, YODA_H5::File::ReadOnly);
29 throw IOError(
"Failed to load HDF5 file " + filename);
36 inline bool readData(
const string& filename,
const string& dsname, T& rtndata) {
38 YODA_H5::File h5file = readFile(filename);
39 DataSet dataset = h5file.getDataSet(dsname);
40 dataset.read(rtndata);
50 inline T readData(
const string& filename,
const string& dsname) {
52 readData(filename, dsname, rtn);
std::string findAnalysisDataFile(const std::string &filename, const std::vector< std::string > &pathprepend=std::vector< std::string >(), const std::vector< std::string > &pathappend=std::vector< std::string >())
Find the first file of the given name in the general data file search dirs.
Definition MC_CENT_PPB_Projections.hh:10