File indexing completed on 2025-01-18 09:55:33
0001
0002
0003 #ifndef EDM4EIC_TrackSegment_CollectionData_H
0004 #define EDM4EIC_TrackSegment_CollectionData_H
0005
0006
0007 #include "edm4eic/TrackSegmentData.h"
0008 #include "edm4eic/TrackSegmentObj.h"
0009 #include "edm4eic/Track.h"
0010
0011
0012
0013
0014 #include "podio/CollectionBuffers.h"
0015 #include "podio/ICollectionProvider.h"
0016
0017 #include <deque>
0018 #include <memory>
0019
0020 namespace edm4eic {
0021
0022
0023 using TrackSegmentObjPointerContainer = std::deque<TrackSegmentObj*>;
0024 using TrackSegmentDataContainer = std::vector<TrackSegmentData>;
0025
0026
0027
0028
0029
0030
0031 class TrackSegmentCollectionData {
0032 public:
0033
0034
0035
0036 TrackSegmentObjPointerContainer entries{};
0037
0038
0039
0040
0041 TrackSegmentCollectionData();
0042
0043
0044
0045
0046 TrackSegmentCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0047
0048
0049
0050
0051 TrackSegmentCollectionData(const TrackSegmentCollectionData&) = delete;
0052 TrackSegmentCollectionData& operator=(const TrackSegmentCollectionData&) = delete;
0053 TrackSegmentCollectionData(TrackSegmentCollectionData&& other) = default;
0054 TrackSegmentCollectionData& operator=(TrackSegmentCollectionData&& other) = default;
0055
0056
0057
0058
0059 ~TrackSegmentCollectionData() = 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(TrackSegmentObj* obj);
0072
0073 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0074
0075 private:
0076
0077 podio::UVecPtr<edm4eic::Track> m_rel_track{nullptr};
0078
0079
0080 podio::UVecPtr<edm4eic::TrackPoint> m_vec_points{nullptr};
0081 std::vector<podio::UVecPtr<edm4eic::TrackPoint>> m_vecs_points{};
0082
0083
0084 podio::CollRefCollection m_refCollections{};
0085 podio::VectorMembersInfo m_vecmem_info{};
0086 std::unique_ptr<TrackSegmentDataContainer> m_data{nullptr};
0087 };
0088
0089
0090 }
0091
0092
0093 #endif