EDM4eic
EIC data model
Loading...
Searching...
No Matches
RingImageCollectionData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_RingImage_CollectionData_H
4#define EDM4EIC_RingImage_CollectionData_H
5
6// datamodel specific includes
9#include "edm4eic/RingImage.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 RingImageObjPointerContainer = std::deque<RingImageObj*>;
24using RingImageDataContainer = std::vector<RingImageData>;
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 RingImageCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
47
48 /**
49 * Non copy-able, move-only class
50 */
55
56 /**
57 * Destructor
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
72 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
73
74private:
75 // members to handle 1-to-N-relations
76
77 // members to handle vector members
78
79 // I/O related buffers
80 podio::CollRefCollection m_refCollections{};
81 podio::VectorMembersInfo m_vecmem_info{};
82 std::unique_ptr<RingImageDataContainer> m_data{nullptr};
83};
84
85
86} // namespace edm4eic
87
88
89#endif
RingImageObjPointerContainer entries
Definition RingImageCollectionData.h:36
void prepareForWrite(bool isSubsetColl)
Definition RingImageCollectionData.cc:71
RingImageCollectionData(RingImageCollectionData &&other)=default
RingImageCollectionData()
Definition RingImageCollectionData.cc:12
RingImageCollectionData(const RingImageCollectionData &)=delete
RingImageCollectionData & operator=(RingImageCollectionData &&other)=default
void prepareAfterRead(uint32_t collectionID)
Definition RingImageCollectionData.cc:90
void makeSubsetCollection()
Definition RingImageCollectionData.cc:124
void clear(bool isSubsetColl)
Definition RingImageCollectionData.cc:45
RingImageCollectionData & operator=(const RingImageCollectionData &)=delete
bool setReferences(const podio::ICollectionProvider *collectionProvider, bool isSubsetColl)
Definition RingImageCollectionData.cc:105
podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl)
Definition RingImageCollectionData.cc:62
Definition CalorimeterHit.cc:17
std::vector< RingImageData > RingImageDataContainer
Definition RingImageCollectionData.h:24
std::deque< RingImageObj * > RingImageObjPointerContainer
Definition RingImageCollectionData.h:23