Warning, file /include/JANA/examples/PodioDatamodel/EventInfoCollectionData.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_EventInfo_CollectionData_H
0004 #define PODIODATAMODEL_EventInfo_CollectionData_H
0005
0006
0007 #include "PodioDatamodel/EventInfoData.h"
0008 #include "PodioDatamodel/EventInfoObj.h"
0009 #include "PodioDatamodel/EventInfo.h"
0010
0011
0012
0013
0014 #include "podio/CollectionBuffers.h"
0015 #include "podio/ICollectionProvider.h"
0016
0017 #include <deque>
0018 #include <memory>
0019
0020
0021
0022 using EventInfoObjPointerContainer = std::deque<EventInfoObj*>;
0023 using EventInfoDataContainer = std::vector<EventInfoData>;
0024
0025
0026
0027
0028
0029
0030 class EventInfoCollectionData {
0031 public:
0032
0033
0034
0035 EventInfoObjPointerContainer entries{};
0036
0037
0038
0039
0040 EventInfoCollectionData();
0041
0042
0043
0044
0045 EventInfoCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0046
0047
0048
0049
0050 EventInfoCollectionData(const EventInfoCollectionData&) = delete;
0051 EventInfoCollectionData& operator=(const EventInfoCollectionData&) = delete;
0052 EventInfoCollectionData(EventInfoCollectionData&& other) = default;
0053 EventInfoCollectionData& operator=(EventInfoCollectionData&& other) = default;
0054
0055
0056
0057
0058 ~EventInfoCollectionData() = default;
0059
0060 void clear(bool isSubsetColl);
0061
0062 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0063
0064 void prepareForWrite(bool isSubsetColl);
0065
0066 void prepareAfterRead(uint32_t collectionID);
0067
0068 void makeSubsetCollection();
0069
0070
0071 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0072
0073 private:
0074
0075
0076
0077
0078
0079 podio::CollRefCollection m_refCollections{};
0080 podio::VectorMembersInfo m_vecmem_info{};
0081 std::unique_ptr<EventInfoDataContainer> m_data{nullptr};
0082 };
0083
0084
0085
0086
0087 #endif