File indexing completed on 2025-07-01 08:35:20
0001
0002
0003 #ifndef EDM4EIC_TrackSegmentOBJ_H
0004 #define EDM4EIC_TrackSegmentOBJ_H
0005
0006
0007 #include "edm4eic/TrackSegmentData.h"
0008 #include "edm4eic/TrackPoint.h"
0009 #include <vector>
0010
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013 #include <memory>
0014
0015 namespace edm4eic {
0016 class Track;
0017 }
0018
0019
0020 namespace edm4eic {
0021
0022 class TrackSegment;
0023
0024 class TrackSegmentObj {
0025 public:
0026
0027 TrackSegmentObj();
0028
0029 TrackSegmentObj(const TrackSegmentObj&);
0030
0031
0032 TrackSegmentObj(const podio::ObjectID id, TrackSegmentData data);
0033
0034 TrackSegmentObj& operator=(const TrackSegmentObj&) = delete;
0035 virtual ~TrackSegmentObj();
0036
0037 public:
0038 podio::ObjectID id;
0039 TrackSegmentData data;
0040 std::unique_ptr<edm4eic::Track> m_track{nullptr};
0041 std::vector<edm4eic::TrackPoint>* m_points{nullptr};
0042 };
0043
0044 }
0045
0046
0047 #endif