Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_TrackClusterMatchOBJ_H
0004 #define EDM4EIC_TrackClusterMatchOBJ_H
0005 
0006 // data model specific includes
0007 #include "edm4eic/TrackClusterMatchData.h"
0008 
0009 #include "podio/ObjectID.h"
0010 
0011 // forward declarations
0012 namespace edm4eic {
0013 class Cluster;
0014 class Track;
0015 }
0016 
0017 
0018 namespace edm4eic {
0019 
0020 class TrackClusterMatch;
0021 
0022 class TrackClusterMatchObj {
0023 public:
0024   /// constructor
0025   TrackClusterMatchObj();
0026   /// copy constructor (does a deep-copy of relation containers)
0027   TrackClusterMatchObj(const TrackClusterMatchObj&);
0028   /// constructor from ObjectID and TrackClusterMatchData
0029   /// does not initialize the internal relation containers
0030   TrackClusterMatchObj(const podio::ObjectID id, TrackClusterMatchData data);
0031   /// No assignment operator
0032   TrackClusterMatchObj& operator=(const TrackClusterMatchObj&) = delete;
0033   virtual ~TrackClusterMatchObj();
0034 
0035 public:
0036   podio::ObjectID id;
0037   TrackClusterMatchData data;
0038   edm4eic::Cluster* m_cluster{nullptr};
0039   edm4eic::Track* m_track{nullptr};
0040 };
0041 
0042 } // namespace edm4eic
0043 
0044 
0045 #endif