Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef PODIODATAMODEL_EventInfoOBJ_H
0004 #define PODIODATAMODEL_EventInfoOBJ_H
0005 
0006 // data model specific includes
0007 #include "PodioDatamodel/EventInfoData.h"
0008 
0009 #include "podio/ObjectID.h"
0010 
0011 
0012 
0013 
0014 class EventInfo;
0015 
0016 class EventInfoObj {
0017 public:
0018   /// constructor
0019   EventInfoObj();
0020   /// copy constructor (does a deep-copy of relation containers)
0021   EventInfoObj(const EventInfoObj&);
0022   /// constructor from ObjectID and EventInfoData
0023   /// does not initialize the internal relation containers
0024   EventInfoObj(const podio::ObjectID id, EventInfoData data);
0025   /// No assignment operator
0026   EventInfoObj& operator=(const EventInfoObj&) = delete;
0027   virtual ~EventInfoObj() = default;
0028 
0029 public:
0030   podio::ObjectID id;
0031   EventInfoData data;
0032 };
0033 
0034 
0035 
0036 #endif