File indexing completed on 2025-01-18 09:55:38
0001
0002
0003 #ifndef EDM4HEP_RecIonizationCluster_CollectionData_H
0004 #define EDM4HEP_RecIonizationCluster_CollectionData_H
0005
0006
0007 #include "edm4hep/RecIonizationClusterData.h"
0008 #include "edm4hep/RecIonizationClusterObj.h"
0009 #include "edm4hep/TrackerPulse.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 edm4hep {
0021
0022 using RecIonizationClusterObjPointerContainer = std::deque<RecIonizationClusterObj*>;
0023 using RecIonizationClusterDataContainer = std::vector<RecIonizationClusterData>;
0024
0025
0026
0027
0028
0029 class RecIonizationClusterCollectionData {
0030 public:
0031
0032
0033
0034 RecIonizationClusterObjPointerContainer entries{};
0035
0036
0037
0038
0039 RecIonizationClusterCollectionData();
0040
0041
0042
0043
0044 RecIonizationClusterCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0045
0046
0047
0048
0049 RecIonizationClusterCollectionData(const RecIonizationClusterCollectionData&) = delete;
0050 RecIonizationClusterCollectionData& operator=(const RecIonizationClusterCollectionData&) = delete;
0051 RecIonizationClusterCollectionData(RecIonizationClusterCollectionData&& other) = default;
0052 RecIonizationClusterCollectionData& operator=(RecIonizationClusterCollectionData&& other) = default;
0053
0054
0055
0056
0057 ~RecIonizationClusterCollectionData() = default;
0058
0059 void clear(bool isSubsetColl);
0060
0061 podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0062
0063 void prepareForWrite(bool isSubsetColl);
0064
0065 void prepareAfterRead(uint32_t collectionID);
0066
0067 void makeSubsetCollection();
0068
0069 void createRelations(RecIonizationClusterObj* obj);
0070
0071 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0072
0073 private:
0074
0075 podio::UVecPtr<edm4hep::TrackerPulse> m_rel_trackerPulse;
0076 std::vector<podio::UVecPtr<edm4hep::TrackerPulse>> m_rel_trackerPulse_tmp{};
0077
0078
0079
0080
0081
0082 podio::CollRefCollection m_refCollections{};
0083 podio::VectorMembersInfo m_vecmem_info{};
0084 std::unique_ptr<RecIonizationClusterDataContainer> m_data{nullptr};
0085 };
0086
0087 }
0088
0089 #endif