File indexing completed on 2024-04-06 12:01:30
0001 #ifndef CondCore_HDF5ESSource_DataProduct_h
0002 #define CondCore_HDF5ESSource_DataProduct_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include <string>
0023 #include <vector>
0024 #include "hdf5.h"
0025
0026
0027
0028
0029
0030 namespace cond::hdf5 {
0031 struct DataProduct {
0032 DataProduct(std::string iName, std::string iType) : name_(std::move(iName)), type_(std::move(iType)) {}
0033 std::string name_;
0034 std::string type_;
0035 std::vector<hobj_ref_t> payloadForIOVs_;
0036 };
0037 }
0038 #endif