EDM4eic
EIC data model
Loading...
Searching...
No Matches
TrackClusterMatchCollectionData.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_TrackClusterMatch_CollectionData_H
4#define EDM4EIC_TrackClusterMatch_CollectionData_H
5
6// datamodel specific includes
9#include "edm4eic/Cluster.h"
10#include "edm4eic/Track.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 TrackClusterMatchObjPointerContainer = std::deque<TrackClusterMatchObj*>;
25using TrackClusterMatchDataContainer = std::vector<TrackClusterMatchData>;
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 TrackClusterMatchCollectionData(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
72
73 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
74
75private:
76 // members to handle 1-to-N-relations
77 podio::UVecPtr<edm4eic::Cluster> m_rel_cluster{nullptr}; ///< Relation buffer for read / write
78 podio::UVecPtr<edm4eic::Track> m_rel_track{nullptr}; ///< Relation buffer for read / write
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<TrackClusterMatchDataContainer> m_data{nullptr};
86};
87
88
89} // namespace edm4eic
90
91
92#endif
Definition TrackClusterMatchCollectionData.h:32
TrackClusterMatchCollectionData & operator=(const TrackClusterMatchCollectionData &)=delete
TrackClusterMatchCollectionData(const TrackClusterMatchCollectionData &)=delete
TrackClusterMatchCollectionData & operator=(TrackClusterMatchCollectionData &&other)=default
podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl)
Definition TrackClusterMatchCollectionData.cc:63
void prepareAfterRead(uint32_t collectionID)
Definition TrackClusterMatchCollectionData.cc:107
void prepareForWrite(bool isSubsetColl)
Definition TrackClusterMatchCollectionData.cc:72
TrackClusterMatchObjPointerContainer entries
Definition TrackClusterMatchCollectionData.h:37
void clear(bool isSubsetColl)
Definition TrackClusterMatchCollectionData.cc:37
TrackClusterMatchCollectionData(TrackClusterMatchCollectionData &&other)=default
void makeSubsetCollection()
Definition TrackClusterMatchCollectionData.cc:171
bool setReferences(const podio::ICollectionProvider *collectionProvider, bool isSubsetColl)
Definition TrackClusterMatchCollectionData.cc:122
TrackClusterMatchCollectionData()
Definition TrackClusterMatchCollectionData.cc:12
Definition CalorimeterHit.cc:18
std::vector< TrackClusterMatchData > TrackClusterMatchDataContainer
Definition TrackClusterMatchCollectionData.h:25
std::deque< TrackClusterMatchObj * > TrackClusterMatchObjPointerContainer
Definition TrackClusterMatchCollectionData.h:24