Back to home page

EIC code displayed by LXR

 
 

    


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

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