Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-06-03 08:33:23

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_GeneratorEventParametersOBJ_H
0004 #define EDM4HEP_GeneratorEventParametersOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4hep/GeneratorEventParametersData.h"
0008 #include "edm4hep/MCParticle.h"
0009 #include <vector>
0010 
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013 
0014 namespace edm4hep {
0015 
0016 class GeneratorEventParameters;
0017 
0018 class GeneratorEventParametersObj {
0019 public:
0020   /// constructor
0021   GeneratorEventParametersObj();
0022   /// copy constructor (does a deep-copy of relation containers)
0023   GeneratorEventParametersObj(const GeneratorEventParametersObj&);
0024   /// constructor from ObjectID and GeneratorEventParametersData
0025   /// does not initialize the internal relation containers
0026   GeneratorEventParametersObj(const podio::ObjectID id, GeneratorEventParametersData data);
0027   /// No assignment operator
0028   GeneratorEventParametersObj& operator=(const GeneratorEventParametersObj&) = delete;
0029   virtual ~GeneratorEventParametersObj();
0030 
0031 public:
0032   podio::ObjectID id;
0033   GeneratorEventParametersData data;
0034   std::vector<edm4hep::MCParticle>* m_signalVertex{nullptr};
0035   std::vector<double>* m_crossSections{nullptr};
0036   std::vector<double>* m_crossSectionErrors{nullptr};
0037 };
0038 
0039 } // namespace edm4hep
0040 
0041 #endif