File indexing completed on 2025-07-03 08:40:34
0001
0002
0003 #ifndef PODIODATAMODEL_ExampleClusterCollection_H
0004 #define PODIODATAMODEL_ExampleClusterCollection_H
0005
0006
0007 #include "PodioDatamodel/ExampleCluster.h"
0008 #include "PodioDatamodel/MutableExampleCluster.h"
0009 #include "PodioDatamodel/ExampleClusterObj.h"
0010 #include "PodioDatamodel/ExampleClusterCollectionData.h"
0011
0012
0013 #include "podio/ICollectionProvider.h"
0014 #include "podio/CollectionBase.h"
0015
0016 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0017 #include "nlohmann/json_fwd.hpp"
0018 #endif
0019
0020 #include <string_view>
0021 #include <vector>
0022 #include <algorithm>
0023 #include <ostream>
0024 #include <mutex>
0025 #include <memory>
0026 #include <cstddef>
0027
0028 namespace podio {
0029 struct RelationNames;
0030 }
0031
0032
0033
0034
0035 class ExampleClusterCollectionIterator {
0036 public:
0037 ExampleClusterCollectionIterator(size_t index, const ExampleClusterObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<ExampleClusterObj>{nullptr}), m_collection(collection) {}
0038
0039 ExampleClusterCollectionIterator(const ExampleClusterCollectionIterator&) = delete;
0040 ExampleClusterCollectionIterator& operator=(const ExampleClusterCollectionIterator&) = delete;
0041
0042 bool operator!=(const ExampleClusterCollectionIterator& x) const {
0043 return m_index != x.m_index;
0044 }
0045
0046 bool operator==(const ExampleClusterCollectionIterator& x) const {
0047 return m_index == x.m_index;
0048 }
0049
0050 ExampleCluster operator*();
0051 ExampleCluster* operator->();
0052 ExampleClusterCollectionIterator& operator++();
0053
0054 private:
0055 size_t m_index;
0056 ExampleCluster m_object;
0057 const ExampleClusterObjPointerContainer* m_collection;
0058 };
0059
0060
0061 class ExampleClusterMutableCollectionIterator {
0062 public:
0063 ExampleClusterMutableCollectionIterator(size_t index, const ExampleClusterObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<ExampleClusterObj>{nullptr}), m_collection(collection) {}
0064
0065 ExampleClusterMutableCollectionIterator(const ExampleClusterMutableCollectionIterator&) = delete;
0066 ExampleClusterMutableCollectionIterator& operator=(const ExampleClusterMutableCollectionIterator&) = delete;
0067
0068 bool operator!=(const ExampleClusterMutableCollectionIterator& x) const {
0069 return m_index != x.m_index;
0070 }
0071
0072 bool operator==(const ExampleClusterMutableCollectionIterator& x) const {
0073 return m_index == x.m_index;
0074 }
0075
0076 MutableExampleCluster operator*();
0077 MutableExampleCluster* operator->();
0078 ExampleClusterMutableCollectionIterator& operator++();
0079
0080 private:
0081 size_t m_index;
0082 MutableExampleCluster m_object;
0083 const ExampleClusterObjPointerContainer* m_collection;
0084 };
0085
0086
0087
0088
0089
0090 class ExampleClusterCollection : public podio::CollectionBase {
0091 public:
0092 using value_type = ExampleCluster;
0093 using const_iterator = ExampleClusterCollectionIterator;
0094 using iterator = ExampleClusterMutableCollectionIterator;
0095 using difference_type = ptrdiff_t;
0096 using size_type = size_t;
0097
0098 ExampleClusterCollection();
0099 ExampleClusterCollection(ExampleClusterCollectionData&& data, bool isSubsetColl);
0100
0101 ExampleClusterCollection(const ExampleClusterCollection& ) = delete;
0102 ExampleClusterCollection& operator=(const ExampleClusterCollection& ) = delete;
0103 ExampleClusterCollection(ExampleClusterCollection&&) = default;
0104 ExampleClusterCollection& operator=(ExampleClusterCollection&&) = default;
0105
0106
0107 ~ExampleClusterCollection() override;
0108
0109 constexpr static auto typeName = "ExampleClusterCollection";
0110 constexpr static auto valueTypeName = "ExampleCluster";
0111 constexpr static auto dataTypeName = "ExampleClusterData";
0112
0113 void clear() final;
0114
0115
0116 void print(std::ostream& os=std::cout, bool flush=true) const final;
0117
0118
0119 ExampleClusterCollection* operator->() { return static_cast<ExampleClusterCollection*>(this); }
0120
0121
0122 MutableExampleCluster create();
0123
0124
0125
0126 template<typename... Args>
0127 MutableExampleCluster create(Args&&... args);
0128
0129
0130 std::size_t size() const final;
0131
0132
0133 std::size_t max_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 ExampleCluster operator[](std::size_t index) const;
0155
0156 MutableExampleCluster operator[](std::size_t index);
0157
0158 ExampleCluster at(std::size_t index) const;
0159
0160 MutableExampleCluster at(std::size_t index);
0161
0162
0163
0164 void push_back(const MutableExampleCluster& object);
0165
0166 void push_back(const ExampleCluster& 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] (ExampleClusterObj* 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 const_iterator cbegin() const {
0203 return begin();
0204 }
0205 iterator end() {
0206 return iterator(m_storage.entries.size(), &m_storage.entries);
0207 }
0208 const_iterator end() const {
0209 return const_iterator(m_storage.entries.size(), &m_storage.entries);
0210 }
0211 const_iterator cend() const {
0212 return end();
0213 }
0214
0215 std::vector<double> energy(const size_t nElem = 0) const;
0216
0217 private:
0218
0219
0220
0221 friend class ExampleClusterCollectionData;
0222
0223 bool m_isValid{false};
0224 mutable bool m_isPrepared{false};
0225 bool m_isSubsetColl{false};
0226 uint32_t m_collectionID{0};
0227 mutable std::unique_ptr<std::mutex> m_storageMtx{nullptr};
0228 mutable ExampleClusterCollectionData m_storage{};
0229 };
0230
0231 std::ostream& operator<<(std::ostream& o, const ExampleClusterCollection& v);
0232
0233 template<typename... Args>
0234 MutableExampleCluster ExampleClusterCollection::create(Args&&... args) {
0235 if (m_isSubsetColl) {
0236 throw std::logic_error("Cannot create new elements on a subset collection");
0237 }
0238 const int size = m_storage.entries.size();
0239 auto obj = new ExampleClusterObj({size, m_collectionID}, {std::forward<Args>(args)...});
0240 m_storage.entries.push_back(obj);
0241
0242
0243 obj->m_Hits = new std::vector<ExampleHit>();
0244 obj->m_Clusters = new std::vector<ExampleCluster>();
0245 m_storage.createRelations(obj);
0246 return MutableExampleCluster(podio::utils::MaybeSharedPtr(obj));
0247 }
0248
0249 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0250 void to_json(nlohmann::json& j, const ExampleClusterCollection& collection);
0251 #endif
0252
0253
0254
0255 #endif