Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-11-22 10:02:07

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