Warning, file /include/JANA/examples/PodioDatamodel/ExampleClusterCollectionData.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef PODIODATAMODEL_ExampleCluster_CollectionData_H
0004 #define PODIODATAMODEL_ExampleCluster_CollectionData_H
0005
0006
0007 #include "PodioDatamodel/ExampleClusterData.h"
0008 #include "PodioDatamodel/ExampleClusterObj.h"
0009 #include "PodioDatamodel/ExampleCluster.h"
0010 #include "PodioDatamodel/ExampleHit.h"
0011
0012
0013
0014
0015 #include "podio/CollectionBuffers.h"
0016 #include "podio/ICollectionProvider.h"
0017
0018 #include <deque>
0019 #include <memory>
0020
0021
0022
0023 using ExampleClusterObjPointerContainer = std::deque<ExampleClusterObj*>;
0024 using ExampleClusterDataContainer = std::vector<ExampleClusterData>;
0025
0026
0027
0028
0029
0030
0031 class ExampleClusterCollectionData {
0032 public:
0033
0034
0035
0036 ExampleClusterObjPointerContainer entries{};
0037
0038
0039
0040
0041 ExampleClusterCollectionData();
0042
0043
0044
0045
0046 ExampleClusterCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0047
0048
0049
0050
0051 ExampleClusterCollectionData(const ExampleClusterCollectionData&) = delete;
0052 ExampleClusterCollectionData& operator=(const ExampleClusterCollectionData&) = delete;
0053 ExampleClusterCollectionData(ExampleClusterCollectionData&& other) = default;
0054 ExampleClusterCollectionData& operator=(ExampleClusterCollectionData&& other) = default;
0055
0056
0057
0058
0059 ~ExampleClusterCollectionData() = default;
0060
0061 void clear(bool isSubsetColl);
0062
0063 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0064
0065 void prepareForWrite(bool isSubsetColl);
0066
0067 void prepareAfterRead(uint32_t collectionID);
0068
0069 void makeSubsetCollection();
0070
0071 void createRelations(ExampleClusterObj* obj);
0072
0073 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0074
0075 private:
0076
0077 podio::UVecPtr<::ExampleHit> m_rel_Hits{std::make_unique<std::vector<::ExampleHit>>()};
0078 std::vector<podio::UVecPtr<::ExampleHit>> m_rel_Hits_tmp{};
0079 podio::UVecPtr<::ExampleCluster> m_rel_Clusters{std::make_unique<std::vector<::ExampleCluster>>()};
0080 std::vector<podio::UVecPtr<::ExampleCluster>> m_rel_Clusters_tmp{};
0081
0082
0083
0084
0085 podio::CollRefCollection m_refCollections{};
0086 podio::VectorMembersInfo m_vecmem_info{};
0087 std::unique_ptr<ExampleClusterDataContainer> m_data{nullptr};
0088 };
0089
0090
0091
0092
0093 #endif