File indexing completed on 2026-04-17 08:20:51
0001
0002
0003 #ifndef EDM4EIC_JetOBJ_H
0004 #define EDM4EIC_JetOBJ_H
0005
0006
0007 #include "edm4eic/JetData.h"
0008 #include "edm4eic/ReconstructedParticle.h"
0009 #include <vector>
0010
0011 #include "podio/ObjectID.h"
0012 #include <vector>
0013
0014
0015
0016 namespace edm4eic {
0017
0018 class Jet;
0019
0020 class JetObj {
0021 public:
0022
0023 JetObj();
0024
0025 JetObj(const JetObj&);
0026
0027
0028 JetObj(const podio::ObjectID& id, const JetData& data);
0029
0030 JetObj& operator=(const JetObj&) = delete;
0031 virtual ~JetObj();
0032
0033 public:
0034 podio::ObjectID id{};
0035 JetData data;
0036 std::vector<edm4eic::ReconstructedParticle>* m_constituents{nullptr};
0037 };
0038
0039 }
0040
0041
0042 #endif