File indexing completed on 2025-01-18 09:55:28
0001
0002
0003 #ifndef EDM4EIC_ClusterOBJ_H
0004 #define EDM4EIC_ClusterOBJ_H
0005
0006
0007 #include "edm4eic/ClusterData.h"
0008 #include "edm4eic/CalorimeterHit.h"
0009 #include "edm4hep/ParticleID.h"
0010 #include <vector>
0011
0012 #include "podio/ObjectID.h"
0013 #include <vector>
0014
0015
0016 namespace edm4eic {
0017
0018 class Cluster;
0019
0020 class ClusterObj {
0021 public:
0022
0023 ClusterObj();
0024
0025 ClusterObj(const ClusterObj&);
0026
0027
0028 ClusterObj(const podio::ObjectID id, ClusterData data);
0029
0030 ClusterObj& operator=(const ClusterObj&) = delete;
0031 virtual ~ClusterObj();
0032
0033 public:
0034 podio::ObjectID id;
0035 ClusterData data;
0036 std::vector<edm4eic::Cluster>* m_clusters{nullptr};
0037 std::vector<edm4eic::CalorimeterHit>* m_hits{nullptr};
0038 std::vector<edm4hep::ParticleID>* m_particleIDs{nullptr};
0039 std::vector<float>* m_shapeParameters{nullptr};
0040 std::vector<float>* m_hitContributions{nullptr};
0041 std::vector<float>* m_subdetectorEnergies{nullptr};
0042 };
0043
0044 }
0045
0046
0047 #endif