EDM4eic
EIC data model
Loading...
Searching...
No Matches
VertexCollectionData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_Vertex_CollectionData_H
4#define EDM4EIC_Vertex_CollectionData_H
5
6// datamodel specific includes
8#include "edm4eic/VertexObj.h"
10
11// schema evolution specific includes
12
13// podio specific includes
14#include "podio/CollectionBuffers.h"
15#include "podio/ICollectionProvider.h"
16
17#include <deque>
18#include <memory>
19
20namespace edm4eic {
21
22
23using VertexObjPointerContainer = std::deque<VertexObj*>;
24using VertexDataContainer = std::vector<VertexData>;
25
26
27/**
28 * Class encapsulating everything related to storage of data that is needed by a
29 * collection.
30 */
32public:
33 /**
34 * The Objs of this collection
35 */
37
38 /**
39 * Default constructor setting up the necessary buffers
40 */
42
43 /**
44 * Constructor from existing I/O buffers
45 */
46 VertexCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
47
48 /**
49 * Non copy-able, move-only class
50 */
55
56 /**
57 * Deconstructor
58 */
60
61 void clear(bool isSubsetColl);
62
63 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
64
65 void prepareForWrite(bool isSubsetColl);
66
67 void prepareAfterRead(uint32_t collectionID);
68
70
71 void createRelations(VertexObj* obj);
72
73 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
74
75private:
76 // members to handle 1-to-N-relations
77 podio::UVecPtr<edm4eic::ReconstructedParticle> m_rel_associatedParticles; ///< Relation buffer for read / write
78 std::vector<podio::UVecPtr<edm4eic::ReconstructedParticle>> m_rel_associatedParticles_tmp{}; ///< Relation buffer for internal book-keeping
79
80 // members to handle vector members
81
82 // I/O related buffers
83 podio::CollRefCollection m_refCollections{};
84 podio::VectorMembersInfo m_vecmem_info{};
85 std::unique_ptr<VertexDataContainer> m_data{nullptr};
86};
87
88
89} // namespace edm4eic
90
91
92#endif
Definition VertexCollectionData.h:31
VertexCollectionData()
Definition VertexCollectionData.cc:11
void prepareAfterRead(uint32_t collectionID)
Definition VertexCollectionData.cc:101
void prepareForWrite(bool isSubsetColl)
Definition VertexCollectionData.cc:70
VertexCollectionData & operator=(const VertexCollectionData &)=delete
void clear(bool isSubsetColl)
Definition VertexCollectionData.cc:33
void makeSubsetCollection()
Definition VertexCollectionData.cc:156
bool setReferences(const podio::ICollectionProvider *collectionProvider, bool isSubsetColl)
Definition VertexCollectionData.cc:121
VertexCollectionData(const VertexCollectionData &)=delete
void createRelations(VertexObj *obj)
Definition VertexCollectionData.cc:116
VertexObjPointerContainer entries
Definition VertexCollectionData.h:36
VertexCollectionData(VertexCollectionData &&other)=default
VertexCollectionData & operator=(VertexCollectionData &&other)=default
podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl)
Definition VertexCollectionData.cc:61
Definition VertexObj.h:19
Definition CalorimeterHit.cc:18
std::vector< VertexData > VertexDataContainer
Definition VertexCollectionData.h:24
std::deque< VertexObj * > VertexObjPointerContainer
Definition VertexCollectionData.h:23