Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-30 07:57:06

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