File indexing completed on 2024-11-15 09:35:34
0001
0002
0003 #ifndef EDM4EIC_ProtoClusterCollection_H
0004 #define EDM4EIC_ProtoClusterCollection_H
0005
0006
0007 #include "edm4eic/ProtoClusterData.h"
0008 #include "edm4eic/ProtoCluster.h"
0009 #include "edm4eic/MutableProtoCluster.h"
0010 #include "edm4eic/ProtoClusterObj.h"
0011 #include "edm4eic/ProtoClusterCollectionData.h"
0012
0013
0014 #include "podio/ICollectionProvider.h"
0015 #include "podio/CollectionBase.h"
0016 #include "podio/CollectionIDTable.h"
0017
0018 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0019 #include "nlohmann/json_fwd.hpp"
0020 #endif
0021
0022 #include <string>
0023 #include <vector>
0024 #include <deque>
0025 #include <array>
0026 #include <algorithm>
0027 #include <ostream>
0028 #include <mutex>
0029 #include <memory>
0030 #include <cstddef>
0031
0032 namespace podio {
0033 struct RelationNames;
0034 }
0035
0036 namespace edm4eic {
0037
0038
0039
0040 class ProtoClusterCollectionIterator {
0041 public:
0042 ProtoClusterCollectionIterator(size_t index, const ProtoClusterObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<ProtoClusterObj>{nullptr}), m_collection(collection) {}
0043
0044 ProtoClusterCollectionIterator(const ProtoClusterCollectionIterator&) = delete;
0045 ProtoClusterCollectionIterator& operator=(const ProtoClusterCollectionIterator&) = delete;
0046
0047 bool operator!=(const ProtoClusterCollectionIterator& x) const {
0048 return m_index != x.m_index;
0049 }
0050
0051 bool operator==(const ProtoClusterCollectionIterator& x) const {
0052 return m_index == x.m_index;
0053 }
0054
0055 ProtoCluster operator*();
0056 ProtoCluster* operator->();
0057 ProtoClusterCollectionIterator& operator++();
0058
0059 private:
0060 size_t m_index;
0061 ProtoCluster m_object;
0062 const ProtoClusterObjPointerContainer* m_collection;
0063 };
0064
0065
0066 class ProtoClusterMutableCollectionIterator {
0067 public:
0068 ProtoClusterMutableCollectionIterator(size_t index, const ProtoClusterObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<ProtoClusterObj>{nullptr}), m_collection(collection) {}
0069
0070 ProtoClusterMutableCollectionIterator(const ProtoClusterMutableCollectionIterator&) = delete;
0071 ProtoClusterMutableCollectionIterator& operator=(const ProtoClusterMutableCollectionIterator&) = delete;
0072
0073 bool operator!=(const ProtoClusterMutableCollectionIterator& x) const {
0074 return m_index != x.m_index;
0075 }
0076
0077 bool operator==(const ProtoClusterMutableCollectionIterator& x) const {
0078 return m_index == x.m_index;
0079 }
0080
0081 MutableProtoCluster operator*();
0082 MutableProtoCluster* operator->();
0083 ProtoClusterMutableCollectionIterator& operator++();
0084
0085 private:
0086 size_t m_index;
0087 MutableProtoCluster m_object;
0088 const ProtoClusterObjPointerContainer* m_collection;
0089 };
0090
0091
0092
0093
0094
0095 class ProtoClusterCollection : public podio::CollectionBase {
0096 public:
0097 using value_type = ProtoCluster;
0098 using const_iterator = ProtoClusterCollectionIterator;
0099 using iterator = ProtoClusterMutableCollectionIterator;
0100
0101 ProtoClusterCollection();
0102 ProtoClusterCollection(ProtoClusterCollectionData&& data, bool isSubsetColl);
0103
0104 ProtoClusterCollection(const ProtoClusterCollection& ) = delete;
0105 ProtoClusterCollection& operator=(const ProtoClusterCollection& ) = delete;
0106 ProtoClusterCollection(ProtoClusterCollection&&) = default;
0107 ProtoClusterCollection& operator=(ProtoClusterCollection&&) = default;
0108
0109
0110 ~ProtoClusterCollection();
0111
0112 constexpr static auto typeName = "edm4eic::ProtoClusterCollection";
0113 constexpr static auto valueTypeName = "edm4eic::ProtoCluster";
0114 constexpr static auto dataTypeName = "edm4eic::ProtoClusterData";
0115
0116 void clear() final;
0117
0118
0119 void print(std::ostream& os=std::cout, bool flush=true) const final;
0120
0121
0122 ProtoClusterCollection* operator->() { return (ProtoClusterCollection*) this; }
0123
0124
0125 MutableProtoCluster create();
0126
0127
0128
0129 template<typename... Args>
0130 MutableProtoCluster create(Args&&... args);
0131
0132
0133 std::size_t size() const final;
0134
0135
0136 bool empty() const final;
0137
0138
0139 const std::string_view getTypeName() const final { return typeName; }
0140
0141 const std::string_view getValueTypeName() const final { return valueTypeName; }
0142
0143 const std::string_view getDataTypeName() const final { return dataTypeName; }
0144
0145 podio::SchemaVersionT getSchemaVersion() const final;
0146
0147 bool isSubsetCollection() const final {
0148 return m_isSubsetColl;
0149 }
0150
0151 void setSubsetCollection(bool setSubset=true) final;
0152
0153
0154 ProtoCluster operator[](std::size_t index) const;
0155
0156 MutableProtoCluster operator[](std::size_t index);
0157
0158 ProtoCluster at(std::size_t index) const;
0159
0160 MutableProtoCluster at(std::size_t index);
0161
0162
0163
0164 void push_back(MutableProtoCluster object);
0165
0166 void push_back(ProtoCluster object);
0167
0168 void prepareForWrite() const final;
0169 void prepareAfterRead() final;
0170 bool setReferences(const podio::ICollectionProvider* collectionProvider) final;
0171
0172
0173 podio::CollectionWriteBuffers getBuffers() final;
0174
0175 void setID(uint32_t ID) final {
0176 m_collectionID = ID;
0177 if (!m_isSubsetColl) {
0178 std::for_each(m_storage.entries.begin(), m_storage.entries.end(),
0179 [ID] (ProtoClusterObj* obj) { obj->id = {obj->id.index, static_cast<uint32_t>(ID)}; }
0180 );
0181 }
0182 m_isValid = true;
0183 };
0184
0185 uint32_t getID() const final {
0186 return m_collectionID;
0187 }
0188
0189 bool isValid() const final {
0190 return m_isValid;
0191 }
0192
0193 size_t getDatamodelRegistryIndex() const final;
0194
0195
0196 iterator begin() {
0197 return iterator(0, &m_storage.entries);
0198 }
0199 const_iterator begin() const {
0200 return const_iterator(0, &m_storage.entries);
0201 }
0202 iterator end() {
0203 return iterator(m_storage.entries.size(), &m_storage.entries);
0204 }
0205 const_iterator end() const {
0206 return const_iterator(m_storage.entries.size(), &m_storage.entries);
0207 }
0208
0209
0210 private:
0211
0212
0213
0214 friend class ProtoClusterCollectionData;
0215
0216 bool m_isValid{false};
0217 mutable bool m_isPrepared{false};
0218 bool m_isSubsetColl{false};
0219 uint32_t m_collectionID{0};
0220 mutable std::unique_ptr<std::mutex> m_storageMtx{nullptr};
0221 mutable ProtoClusterCollectionData m_storage{};
0222 };
0223
0224 std::ostream& operator<<(std::ostream& o, const ProtoClusterCollection& v);
0225
0226 template<typename... Args>
0227 MutableProtoCluster ProtoClusterCollection::create(Args&&... args) {
0228 if (m_isSubsetColl) {
0229 throw std::logic_error("Cannot create new elements on a subset collection");
0230 }
0231 const int size = m_storage.entries.size();
0232 auto obj = new ProtoClusterObj({size, m_collectionID}, {std::forward<Args>(args)...});
0233 m_storage.entries.push_back(obj);
0234
0235
0236 obj->m_hits = new std::vector<edm4eic::CalorimeterHit>();
0237 obj->m_weights = new std::vector<float>();
0238 m_storage.createRelations(obj);
0239 return MutableProtoCluster(podio::utils::MaybeSharedPtr(obj));
0240 }
0241
0242 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0243 void to_json(nlohmann::json& j, const ProtoClusterCollection& collection);
0244 #endif
0245
0246 }
0247
0248
0249 #endif