File indexing completed on 2025-12-21 09:49:13
0001
0002
0003 #ifndef EDM4EIC_Cluster_CollectionData_H
0004 #define EDM4EIC_Cluster_CollectionData_H
0005
0006
0007 #include "edm4eic/ClusterData.h"
0008 #include "edm4eic/ClusterObj.h"
0009 #include "edm4eic/Cluster.h"
0010 #include "edm4eic/CalorimeterHit.h"
0011 #include "edm4hep/ParticleID.h"
0012
0013
0014
0015
0016 #include "podio/CollectionBuffers.h"
0017 #include "podio/ICollectionProvider.h"
0018
0019 #include <deque>
0020 #include <memory>
0021
0022 namespace edm4eic {
0023
0024
0025 using ClusterObjPointerContainer = std::deque<ClusterObj*>;
0026 using ClusterDataContainer = std::vector<ClusterData>;
0027
0028
0029
0030
0031
0032
0033 class ClusterCollectionData {
0034 public:
0035
0036
0037
0038 ClusterObjPointerContainer entries{};
0039
0040
0041
0042
0043 ClusterCollectionData();
0044
0045
0046
0047
0048 ClusterCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0049
0050
0051
0052
0053 ClusterCollectionData(const ClusterCollectionData&) = delete;
0054 ClusterCollectionData& operator=(const ClusterCollectionData&) = delete;
0055 ClusterCollectionData(ClusterCollectionData&& other) = default;
0056 ClusterCollectionData& operator=(ClusterCollectionData&& other) = default;
0057
0058
0059
0060
0061 ~ClusterCollectionData() = default;
0062
0063 void clear(bool isSubsetColl);
0064
0065 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0066
0067 void prepareForWrite(bool isSubsetColl);
0068
0069 void prepareAfterRead(uint32_t collectionID);
0070
0071 void makeSubsetCollection();
0072
0073 void createRelations(ClusterObj* obj);
0074
0075 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0076
0077 private:
0078
0079 podio::UVecPtr<edm4eic::Cluster> m_rel_clusters{std::make_unique<std::vector<edm4eic::Cluster>>()};
0080 std::vector<podio::UVecPtr<edm4eic::Cluster>> m_rel_clusters_tmp{};
0081 podio::UVecPtr<edm4eic::CalorimeterHit> m_rel_hits{std::make_unique<std::vector<edm4eic::CalorimeterHit>>()};
0082 std::vector<podio::UVecPtr<edm4eic::CalorimeterHit>> m_rel_hits_tmp{};
0083 podio::UVecPtr<edm4hep::ParticleID> m_rel_particleIDs{std::make_unique<std::vector<edm4hep::ParticleID>>()};
0084 std::vector<podio::UVecPtr<edm4hep::ParticleID>> m_rel_particleIDs_tmp{};
0085
0086
0087 podio::UVecPtr<float> m_vec_shapeParameters{nullptr};
0088 std::vector<podio::UVecPtr<float>> m_vecs_shapeParameters{};
0089 podio::UVecPtr<float> m_vec_hitContributions{nullptr};
0090 std::vector<podio::UVecPtr<float>> m_vecs_hitContributions{};
0091 podio::UVecPtr<float> m_vec_subdetectorEnergies{nullptr};
0092 std::vector<podio::UVecPtr<float>> m_vecs_subdetectorEnergies{};
0093
0094
0095 podio::CollRefCollection m_refCollections{};
0096 podio::VectorMembersInfo m_vecmem_info{};
0097 std::unique_ptr<ClusterDataContainer> m_data{nullptr};
0098 };
0099
0100
0101 }
0102
0103
0104 #endif