Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:11

0001 // -*- C++ -*-
0002 //
0003 // This file is part of HepMC
0004 // Copyright (C) 2014-2023 The HepMC collaboration (see AUTHORS for details)
0005 //
0006 #ifndef HEPMC3_DATA_GENRUNINFODATA_H
0007 #define HEPMC3_DATA_GENRUNINFODATA_H
0008 /**
0009  *  @file GenRunInfoData.h
0010  *  @brief Definition of \b struct GenRunInfoData
0011  *
0012  *  @struct HepMC3::GenRunInfoData
0013  *  @brief Stores serializable run information
0014  *
0015  *  @ingroup data
0016  *
0017  */
0018 #include <vector>
0019 #include <string>
0020 
0021 namespace HepMC3 {
0022 
0023 struct GenRunInfoData {
0024     std::vector<std::string> weight_names;     ///< Weight names
0025 
0026     std::vector<std::string> tool_name;        ///< Tool names
0027     std::vector<std::string> tool_version;     ///< Tool versions
0028     std::vector<std::string> tool_description; ///< Tool descriptions
0029 
0030     std::vector<std::string> attribute_name;   ///< Attribute name
0031     std::vector<std::string> attribute_string; ///< Attribute serialized as string
0032 };
0033 
0034 } // namespace HepMC
0035 
0036 #endif