Back to home page

EIC code displayed by LXR

 
 

    


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

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