File indexing completed on 2025-06-03 08:33:27
0001
0002
0003 #ifndef EDM4HEP_TrackerHit3DOBJ_H
0004 #define EDM4HEP_TrackerHit3DOBJ_H
0005
0006
0007 #include "edm4hep/TrackerHit3DData.h"
0008
0009 #include "podio/ObjectID.h"
0010
0011 namespace edm4hep {
0012
0013 class TrackerHit3D;
0014
0015 class TrackerHit3DObj {
0016 public:
0017
0018 TrackerHit3DObj();
0019
0020 TrackerHit3DObj(const TrackerHit3DObj&);
0021
0022
0023 TrackerHit3DObj(const podio::ObjectID id, TrackerHit3DData data);
0024
0025 TrackerHit3DObj& operator=(const TrackerHit3DObj&) = delete;
0026 virtual ~TrackerHit3DObj() = default;
0027
0028 public:
0029 podio::ObjectID id;
0030 TrackerHit3DData data;
0031 };
0032
0033 }
0034
0035 #endif