EDM4eic
EIC data model
Loading...
Searching...
No Matches
TrackSeedCollectionData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_TrackSeed_CollectionData_H
4#define EDM4EIC_TrackSeed_CollectionData_H
5
6// datamodel specific includes
10#include "edm4eic/TrackerHit.h"
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 TrackSeedObjPointerContainer = std::deque<TrackSeedObj*>;
25using TrackSeedDataContainer = std::vector<TrackSeedData>;
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 TrackSeedCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
48
49 /**
50 * Non copy-able, move-only class
51 */
56
57 /**
58 * Deconstructor
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::TrackerHit> m_rel_hits; ///< Relation buffer for read / write
79 std::vector<podio::UVecPtr<edm4eic::TrackerHit>> m_rel_hits_tmp{}; ///< Relation buffer for internal book-keeping
80 podio::UVecPtr<edm4eic::TrackParameters> m_rel_params{nullptr}; ///< Relation buffer for read / write
81
82 // members to handle vector members
83
84 // I/O related buffers
85 podio::CollRefCollection m_refCollections{};
86 podio::VectorMembersInfo m_vecmem_info{};
87 std::unique_ptr<TrackSeedDataContainer> m_data{nullptr};
88};
89
90
91} // namespace edm4eic
92
93
94#endif
Definition TrackSeedCollectionData.h:32
TrackSeedCollectionData(const TrackSeedCollectionData &)=delete
void createRelations(TrackSeedObj *obj)
Definition TrackSeedCollectionData.cc:133
void makeSubsetCollection()
Definition TrackSeedCollectionData.cc:188
podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl)
Definition TrackSeedCollectionData.cc:70
void clear(bool isSubsetColl)
Definition TrackSeedCollectionData.cc:37
bool setReferences(const podio::ICollectionProvider *collectionProvider, bool isSubsetColl)
Definition TrackSeedCollectionData.cc:138
void prepareForWrite(bool isSubsetColl)
Definition TrackSeedCollectionData.cc:79
void prepareAfterRead(uint32_t collectionID)
Definition TrackSeedCollectionData.cc:118
TrackSeedCollectionData & operator=(const TrackSeedCollectionData &)=delete
TrackSeedObjPointerContainer entries
Definition TrackSeedCollectionData.h:37
TrackSeedCollectionData(TrackSeedCollectionData &&other)=default
TrackSeedCollectionData & operator=(TrackSeedCollectionData &&other)=default
TrackSeedCollectionData()
Definition TrackSeedCollectionData.cc:12
Definition TrackSeedObj.h:23
Definition CalorimeterHit.cc:18
std::deque< TrackSeedObj * > TrackSeedObjPointerContainer
Definition TrackSeedCollectionData.h:24
std::vector< TrackSeedData > TrackSeedDataContainer
Definition TrackSeedCollectionData.h:25