File indexing completed on 2025-01-18 09:55:33
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
0014 namespace edm4eic {
0015 class Track;
0016 }
0017
0018
0019 namespace edm4eic {
0020
0021 class TrackSegment;
0022
0023 class TrackSegmentObj {
0024 public:
0025
0026 TrackSegmentObj();
0027
0028 TrackSegmentObj(const TrackSegmentObj&);
0029
0030
0031 TrackSegmentObj(const podio::ObjectID id, TrackSegmentData data);
0032
0033 TrackSegmentObj& operator=(const TrackSegmentObj&) = delete;
0034 virtual ~TrackSegmentObj();
0035
0036 public:
0037 podio::ObjectID id;
0038 TrackSegmentData data;
0039 edm4eic::Track* m_track{nullptr};
0040 std::vector<edm4eic::TrackPoint>* m_points{nullptr};
0041 };
0042
0043 }
0044
0045
0046 #endif