File indexing completed on 2025-01-18 10:01:11
0001
0002
0003
0004
0005
0006 #ifndef HEPMC3_DATA_GENRUNINFODATA_H
0007 #define HEPMC3_DATA_GENRUNINFODATA_H
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #include <vector>
0019 #include <string>
0020
0021 namespace HepMC3 {
0022
0023 struct GenRunInfoData {
0024 std::vector<std::string> weight_names;
0025
0026 std::vector<std::string> tool_name;
0027 std::vector<std::string> tool_version;
0028 std::vector<std::string> tool_description;
0029
0030 std::vector<std::string> attribute_name;
0031 std::vector<std::string> attribute_string;
0032 };
0033
0034 }
0035
0036 #endif