Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:34

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