EDM4eic
EIC data model
Loading...
Searching...
No Matches
TensorCollection.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_TensorCollection_H
4#define EDM4EIC_TensorCollection_H
5
6// datamodel specific includes
7#include "edm4eic/Tensor.h"
9#include "edm4eic/TensorObj.h"
11
12// podio specific includes
13#include "podio/ICollectionProvider.h"
14#include "podio/CollectionBase.h"
15
16#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
17#include "nlohmann/json_fwd.hpp"
18#endif
19
20#include <string_view>
21#include <vector>
22#include <array>
23#include <algorithm>
24#include <ostream>
25#include <mutex>
26#include <memory>
27#include <cstddef>
28
29namespace podio {
30 struct RelationNames;
31}
32
33namespace edm4eic {
34
35
36
38public:
39 TensorCollectionIterator(size_t index, const TensorObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<TensorObj>{nullptr}), m_collection(collection) {}
40
43
44 bool operator!=(const TensorCollectionIterator& x) const {
45 return m_index != x.m_index; // TODO: may not be complete
46 }
47
48 bool operator==(const TensorCollectionIterator& x) const {
49 return m_index == x.m_index; // TODO: may not be complete
50 }
51
55
56private:
57 size_t m_index;
58 Tensor m_object;
59 const TensorObjPointerContainer* m_collection;
60};
61
62
64public:
65 TensorMutableCollectionIterator(size_t index, const TensorObjPointerContainer* collection) : m_index(index), m_object(podio::utils::MaybeSharedPtr<TensorObj>{nullptr}), m_collection(collection) {}
66
69
71 return m_index != x.m_index; // TODO: may not be complete
72 }
73
75 return m_index == x.m_index; // TODO: may not be complete
76 }
77
81
82private:
83 size_t m_index;
84 MutableTensor m_object;
85 const TensorObjPointerContainer* m_collection;
86};
87
88
89/**
90A Collection is identified by an ID.
91*/
92class TensorCollection : public podio::CollectionBase {
93public:
97 using difference_type = ptrdiff_t;
98 using size_type = size_t;
99
101 TensorCollection(TensorCollectionData&& data, bool isSubsetColl);
102 // This is a move-only type
107
108// TensorCollection(TensorVector* data, uint32_t collectionID);
110
111 constexpr static auto typeName = "edm4eic::TensorCollection";
112 constexpr static auto valueTypeName = "edm4eic::Tensor";
113 constexpr static auto dataTypeName = "edm4eic::TensorData";
114
115 void clear() final;
116
117 /// Print this collection to the passed stream
118 void print(std::ostream& os=std::cout, bool flush=true) const final;
119
120 /// operator to allow pointer like calling of members a la LCIO
121 TensorCollection* operator->() { return static_cast<TensorCollection*>(this); }
122
123 /// Append a new object to the collection, and return this object.
125
126 /// Append a new object to the collection, and return this object.
127 /// Initialized with the parameters given
128 template<typename... Args>
129 MutableTensor create(Args&&... args);
130
131 /// number of elements in the collection
132 std::size_t size() const final;
133
134 /// maximal number of elements in the collection
135 std::size_t max_size() const final;
136
137 /// Is the collection empty
138 bool empty() const final;
139
140 /// fully qualified type name
141 const std::string_view getTypeName() const final { return typeName; }
142 /// fully qualified type name of elements - with namespace
143 const std::string_view getValueTypeName() const final { return valueTypeName; }
144 /// fully qualified type name of stored POD elements - with namespace
145 const std::string_view getDataTypeName() const final { return dataTypeName; }
146 /// schema version
147 podio::SchemaVersionT getSchemaVersion() const final;
148
149 bool isSubsetCollection() const final {
150 return m_isSubsetColl;
151 }
152
153 void setSubsetCollection(bool setSubset=true) final;
154
155 /// Returns the const object of given index
156 Tensor operator[](std::size_t index) const;
157 /// Returns the object of a given index
158 MutableTensor operator[](std::size_t index);
159 /// Returns the const object of given index
160 Tensor at(std::size_t index) const;
161 /// Returns the object of given index
162 MutableTensor at(std::size_t index);
163
164
165 /// Append object to the collection
166 void push_back(const MutableTensor& object);
167 /// Append an object to the (subset) collection
168 void push_back(const Tensor& object);
169
170 void prepareForWrite() const final;
171 void prepareAfterRead() final;
172 bool setReferences(const podio::ICollectionProvider* collectionProvider) final;
173
174 /// Get the collection buffers for this collection
175 podio::CollectionWriteBuffers getBuffers() final;
176
177 void setID(uint32_t ID) final {
178 m_collectionID = ID;
179 if (!m_isSubsetColl) {
180 std::for_each(m_storage.entries.begin(), m_storage.entries.end(),
181 [ID] (TensorObj* obj) { obj->id = {obj->id.index, static_cast<uint32_t>(ID)}; }
182 );
183 }
184 m_isValid = true;
185 }
186
187 uint32_t getID() const final {
188 return m_collectionID;
189 }
190
191 bool isValid() const final {
192 return m_isValid;
193 }
194
195 size_t getDatamodelRegistryIndex() const final;
196
197 // support for the iterator protocol
198 iterator begin() {
199 return iterator(0, &m_storage.entries);
200 }
202 return const_iterator(0, &m_storage.entries);
203 }
205 return begin();
206 }
208 return iterator(m_storage.entries.size(), &m_storage.entries);
209 }
211 return const_iterator(m_storage.entries.size(), &m_storage.entries);
212 }
214 return end();
215 }
216
217 std::vector<std::int32_t> elementType(const size_t nElem = 0) const;
218
219private:
220 // For setReferences, we need to give our own CollectionData access to our
221 // private entries. Otherwise we would need to expose a public member function
222 // that gives access to the Obj* which is definitely not what we want
224
225 bool m_isValid{false};
226 mutable bool m_isPrepared{false};
227 bool m_isSubsetColl{false};
228 uint32_t m_collectionID{0};
229 mutable std::unique_ptr<std::mutex> m_storageMtx{nullptr};
230 mutable TensorCollectionData m_storage{};
231};
232
233std::ostream& operator<<(std::ostream& o, const TensorCollection& v);
234
235template<typename... Args>
236MutableTensor TensorCollection::create(Args&&... args) {
237 if (m_isSubsetColl) {
238 throw std::logic_error("Cannot create new elements on a subset collection");
239 }
240 const int size = m_storage.entries.size();
241 auto obj = new TensorObj({size, m_collectionID}, {std::forward<Args>(args)...});
242 m_storage.entries.push_back(obj);
243
244 // Need to initialize the relation vectors manually for the {ObjectID, TensorData} constructor
245 obj->m_shape = new std::vector<std::int64_t>();
246 obj->m_floatData = new std::vector<float>();
247 obj->m_int64Data = new std::vector<std::int64_t>();
248 m_storage.createRelations(obj);
249 return MutableTensor(podio::utils::MaybeSharedPtr(obj));
250}
251
252#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
253void to_json(nlohmann::json& j, const TensorCollection& collection);
254#endif
255
256} // namespace edm4eic
257
258
259#endif
Definition MutableTensor.h:31
Definition TensorCollectionData.h:30
TensorObjPointerContainer entries
Definition TensorCollectionData.h:35
Definition TensorCollection.h:92
TensorCollection & operator=(TensorCollection &&)=default
static constexpr auto typeName
Definition TensorCollection.h:111
TensorCollection()
Definition TensorCollection.cc:23
bool isSubsetCollection() const final
Definition TensorCollection.h:149
static constexpr auto dataTypeName
Definition TensorCollection.h:113
void prepareAfterRead() final
Definition TensorCollection.cc:111
ptrdiff_t difference_type
Definition TensorCollection.h:97
const_iterator cbegin() const
Definition TensorCollection.h:204
uint32_t getID() const final
Definition TensorCollection.h:187
MutableTensor create()
Append a new object to the collection, and return this object.
Definition TensorCollection.cc:73
const std::string_view getTypeName() const final
fully qualified type name
Definition TensorCollection.h:141
const_iterator end() const
Definition TensorCollection.h:210
const std::string_view getValueTypeName() const final
fully qualified type name of elements - with namespace
Definition TensorCollection.h:143
~TensorCollection()
Definition TensorCollection.cc:29
void setID(uint32_t ID) final
Definition TensorCollection.h:177
void clear() final
Definition TensorCollection.cc:85
iterator end()
Definition TensorCollection.h:207
void push_back(const MutableTensor &object)
Append object to the collection.
Definition TensorCollection.cc:130
TensorCollection(TensorCollection &&)=default
std::size_t size() const final
number of elements in the collection
Definition TensorCollection.cc:50
const_iterator cend() const
Definition TensorCollection.h:213
TensorCollection & operator=(const TensorCollection &)=delete
podio::CollectionWriteBuffers getBuffers() final
Get the collection buffers for this collection.
Definition TensorCollection.cc:163
bool isValid() const final
Definition TensorCollection.h:191
static constexpr auto valueTypeName
Definition TensorCollection.h:112
podio::SchemaVersionT getSchemaVersion() const final
schema version
Definition TensorCollection.cc:182
bool setReferences(const podio::ICollectionProvider *collectionProvider) final
Definition TensorCollection.cc:126
TensorCollection(const TensorCollection &)=delete
void prepareForWrite() const final
Definition TensorCollection.cc:90
const std::string_view getDataTypeName() const final
fully qualified type name of stored POD elements - with namespace
Definition TensorCollection.h:145
size_t size_type
Definition TensorCollection.h:98
const_iterator begin() const
Definition TensorCollection.h:201
void setSubsetCollection(bool setSubset=true) final
Definition TensorCollection.cc:62
Tensor at(std::size_t index) const
Returns the const object of given index.
Definition TensorCollection.cc:38
void print(std::ostream &os=std::cout, bool flush=true) const final
Print this collection to the passed stream.
Definition TensorCollection.cc:361
bool empty() const final
Is the collection empty.
Definition TensorCollection.cc:58
std::size_t max_size() const final
maximal number of elements in the collection
Definition TensorCollection.cc:54
Definition TensorCollection.h:37
Tensor * operator->()
Definition TensorCollection.cc:299
bool operator!=(const TensorCollectionIterator &x) const
Definition TensorCollection.h:44
TensorCollectionIterator(const TensorCollectionIterator &)=delete
TensorCollectionIterator(size_t index, const TensorObjPointerContainer *collection)
Definition TensorCollection.h:39
TensorCollectionIterator & operator++()
Definition TensorCollection.cc:304
bool operator==(const TensorCollectionIterator &x) const
Definition TensorCollection.h:48
Tensor operator*()
Definition TensorCollection.cc:294
TensorCollectionIterator & operator=(const TensorCollectionIterator &)=delete
Definition Tensor.h:33
Definition TensorCollection.h:63
TensorMutableCollectionIterator & operator++()
Definition TensorCollection.cc:321
TensorMutableCollectionIterator & operator=(const TensorMutableCollectionIterator &)=delete
TensorMutableCollectionIterator(size_t index, const TensorObjPointerContainer *collection)
Definition TensorCollection.h:65
bool operator!=(const TensorMutableCollectionIterator &x) const
Definition TensorCollection.h:70
MutableTensor operator*()
Definition TensorCollection.cc:311
TensorMutableCollectionIterator(const TensorMutableCollectionIterator &)=delete
MutableTensor * operator->()
Definition TensorCollection.cc:316
bool operator==(const TensorMutableCollectionIterator &x) const
Definition TensorCollection.h:74
Definition TensorObj.h:18
std::vector< std::int64_t > * m_shape
Definition TensorObj.h:34
Definition CalorimeterHit.cc:17
std::deque< TensorObj * > TensorObjPointerContainer
Definition TensorCollectionData.h:22
std::ostream & operator<<(std::ostream &o, const CalorimeterHit &value)
Definition CalorimeterHit.cc:103
Definition CalorimeterHitCollection.h:29