EDM4eic
EIC data model
Loading...
Searching...
No Matches
ProtoClusterCollectionData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_ProtoCluster_CollectionData_H
4#define EDM4EIC_ProtoCluster_CollectionData_H
5
6// datamodel specific includes
11
12// schema evolution specific includes
13
14// podio specific includes
15#include "podio/CollectionBuffers.h"
16#include "podio/ICollectionProvider.h"
17
18#include <deque>
19#include <memory>
20
21namespace edm4eic {
22
23
24using ProtoClusterObjPointerContainer = std::deque<ProtoClusterObj*>;
25using ProtoClusterDataContainer = std::vector<ProtoClusterData>;
26
27
28/**
29 * Class encapsulating everything related to storage of data that is needed by a
30 * collection.
31 */
33public:
34 /**
35 * The Objs of this collection
36 */
38
39 /**
40 * Default constructor setting up the necessary buffers
41 */
43
44 /**
45 * Constructor from existing I/O buffers
46 */
47 ProtoClusterCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
48
49 /**
50 * Non copy-able, move-only class
51 */
56
57 /**
58 * Destructor
59 */
61
62 void clear(bool isSubsetColl);
63
64 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
65
66 void prepareForWrite(bool isSubsetColl);
67
68 void prepareAfterRead(uint32_t collectionID);
69
71
73
74 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
75
76private:
77 // members to handle 1-to-N-relations
78 podio::UVecPtr<edm4eic::CalorimeterHit> m_rel_hits{std::make_unique<std::vector<edm4eic::CalorimeterHit>>()}; ///< Relation buffer for read / write
79 std::vector<podio::UVecPtr<edm4eic::CalorimeterHit>> m_rel_hits_tmp{}; ///< Relation buffer for internal book-keeping
80
81 // members to handle vector members
82 podio::UVecPtr<float> m_vec_weights{nullptr}; /// combined vector of all objects in collection
83 std::vector<podio::UVecPtr<float>> m_vecs_weights{}; /// pointers to individual member vectors
84
85 // I/O related buffers
86 podio::CollRefCollection m_refCollections{};
87 podio::VectorMembersInfo m_vecmem_info{};
88 std::unique_ptr<ProtoClusterDataContainer> m_data{nullptr};
89};
90
91
92} // namespace edm4eic
93
94
95#endif
void createRelations(ProtoClusterObj *obj)
Definition ProtoClusterCollectionData.cc:155
ProtoClusterCollectionData & operator=(const ProtoClusterCollectionData &)=delete
ProtoClusterCollectionData & operator=(ProtoClusterCollectionData &&other)=default
void prepareForWrite(bool isSubsetColl)
Definition ProtoClusterCollectionData.cc:99
ProtoClusterCollectionData(ProtoClusterCollectionData &&other)=default
bool setReferences(const podio::ICollectionProvider *collectionProvider, bool isSubsetColl)
Definition ProtoClusterCollectionData.cc:162
podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl)
Definition ProtoClusterCollectionData.cc:85
ProtoClusterCollectionData(const ProtoClusterCollectionData &)=delete
ProtoClusterCollectionData()
Definition ProtoClusterCollectionData.cc:14
void makeSubsetCollection()
Definition ProtoClusterCollectionData.cc:195
void prepareAfterRead(uint32_t collectionID)
Definition ProtoClusterCollectionData.cc:139
void clear(bool isSubsetColl)
Definition ProtoClusterCollectionData.cc:52
ProtoClusterObjPointerContainer entries
Definition ProtoClusterCollectionData.h:37
Definition ProtoClusterObj.h:20
Definition CalorimeterHit.cc:17
std::vector< ProtoClusterData > ProtoClusterDataContainer
Definition ProtoClusterCollectionData.h:25
std::deque< ProtoClusterObj * > ProtoClusterObjPointerContainer
Definition ProtoClusterCollectionData.h:24