File indexing completed on 2025-01-18 09:55:38
0001
0002
0003 #ifndef EDM4HEP_ParticleIDOBJ_H
0004 #define EDM4HEP_ParticleIDOBJ_H
0005
0006
0007 #include "edm4hep/ParticleIDData.h"
0008 #include <vector>
0009
0010 #include "podio/ObjectID.h"
0011 #include <vector>
0012
0013 namespace edm4hep {
0014
0015 class ParticleID;
0016
0017 class ParticleIDObj {
0018 public:
0019
0020 ParticleIDObj();
0021
0022 ParticleIDObj(const ParticleIDObj&);
0023
0024
0025 ParticleIDObj(const podio::ObjectID id, ParticleIDData data);
0026
0027 ParticleIDObj& operator=(const ParticleIDObj&) = delete;
0028 virtual ~ParticleIDObj();
0029
0030 public:
0031 podio::ObjectID id;
0032 ParticleIDData data;
0033 std::vector<float>* m_parameters{nullptr};
0034 };
0035
0036 }
0037
0038 #endif