Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_TrackSegmentOBJ_H
0004 #define EDM4EIC_TrackSegmentOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4eic/TrackSegmentData.h"
0008 #include "edm4eic/TrackPoint.h"
0009 #include <vector>
0010 
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013 // forward declarations
0014 namespace edm4eic {
0015 class Track;
0016 }
0017 
0018 
0019 namespace edm4eic {
0020 
0021 class TrackSegment;
0022 
0023 class TrackSegmentObj {
0024 public:
0025   /// constructor
0026   TrackSegmentObj();
0027   /// copy constructor (does a deep-copy of relation containers)
0028   TrackSegmentObj(const TrackSegmentObj&);
0029   /// constructor from ObjectID and TrackSegmentData
0030   /// does not initialize the internal relation containers
0031   TrackSegmentObj(const podio::ObjectID id, TrackSegmentData data);
0032   /// No assignment operator
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 } // namespace edm4eic
0044 
0045 
0046 #endif