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_ExampleHitOBJ_H
0004 #define PODIODATAMODEL_ExampleHitOBJ_H
0005 
0006 // data model specific includes
0007 #include "PodioDatamodel/ExampleHitData.h"
0008 
0009 #include "podio/ObjectID.h"
0010 
0011 
0012 
0013 
0014 class ExampleHit;
0015 
0016 class ExampleHitObj {
0017 public:
0018   /// constructor
0019   ExampleHitObj();
0020   /// copy constructor (does a deep-copy of relation containers)
0021   ExampleHitObj(const ExampleHitObj&);
0022   /// constructor from ObjectID and ExampleHitData
0023   /// does not initialize the internal relation containers
0024   ExampleHitObj(const podio::ObjectID id, ExampleHitData data);
0025   /// No assignment operator
0026   ExampleHitObj& operator=(const ExampleHitObj&) = delete;
0027   virtual ~ExampleHitObj() = default;
0028 
0029 public:
0030   podio::ObjectID id;
0031   ExampleHitData data;
0032 };
0033 
0034 
0035 
0036 #endif