File indexing completed on 2026-09-17 08:41:40
0001
0002
0003 #ifndef ACTSPODIOEDM_BoundParameters_CollectionData_H
0004 #define ACTSPODIOEDM_BoundParameters_CollectionData_H
0005
0006
0007 #include "ActsPodioEdm/BoundParameters.h"
0008 #include "ActsPodioEdm/BoundParametersData.h"
0009 #include "ActsPodioEdm/BoundParametersObj.h"
0010
0011
0012
0013
0014 #include <deque>
0015 #include <memory>
0016
0017 #include "podio/CollectionBuffers.h"
0018 #include "podio/ICollectionProvider.h"
0019
0020 namespace ActsPodioEdm {
0021
0022 using BoundParametersObjPointerContainer = std::deque<BoundParametersObj*>;
0023 using BoundParametersDataContainer = std::vector<BoundParametersData>;
0024
0025
0026
0027
0028
0029 class BoundParametersCollectionData {
0030 public:
0031
0032
0033
0034 BoundParametersObjPointerContainer entries{};
0035
0036
0037
0038
0039 BoundParametersCollectionData();
0040
0041
0042
0043
0044 BoundParametersCollectionData(podio::CollectionReadBuffers&& buffers,
0045 bool isSubsetColl);
0046
0047
0048
0049
0050 BoundParametersCollectionData(const BoundParametersCollectionData&) = delete;
0051 BoundParametersCollectionData& operator=(
0052 const BoundParametersCollectionData&) = delete;
0053 BoundParametersCollectionData(BoundParametersCollectionData&& other) =
0054 default;
0055 BoundParametersCollectionData& operator=(
0056 BoundParametersCollectionData&& other) = default;
0057
0058
0059
0060
0061 ~BoundParametersCollectionData() = default;
0062
0063 void clear(bool isSubsetColl);
0064
0065 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0066
0067 void prepareForWrite(bool isSubsetColl);
0068
0069 void prepareAfterRead(uint32_t collectionID);
0070
0071 void makeSubsetCollection();
0072
0073 bool setReferences(const podio::ICollectionProvider* collectionProvider,
0074 bool isSubsetColl);
0075
0076 private:
0077
0078
0079
0080
0081
0082 podio::CollRefCollection m_refCollections{};
0083 podio::VectorMembersInfo m_vecmem_info{};
0084 std::unique_ptr<BoundParametersDataContainer> m_data{nullptr};
0085 };
0086
0087 }
0088
0089 #endif