Warning, file /include/edm4eic/TensorCollectionData.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 EDM4EIC_Tensor_CollectionData_H
0004 #define EDM4EIC_Tensor_CollectionData_H
0005
0006
0007 #include "edm4eic/TensorData.h"
0008 #include "edm4eic/TensorObj.h"
0009 #include "edm4eic/Tensor.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 TensorObjPointerContainer = std::deque<TensorObj*>;
0024 using TensorDataContainer = std::vector<TensorData>;
0025
0026
0027
0028
0029
0030
0031 class TensorCollectionData {
0032 public:
0033
0034
0035
0036 TensorObjPointerContainer entries{};
0037
0038
0039
0040
0041 TensorCollectionData();
0042
0043
0044
0045
0046 TensorCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0047
0048
0049
0050
0051 TensorCollectionData(const TensorCollectionData&) = delete;
0052 TensorCollectionData& operator=(const TensorCollectionData&) = delete;
0053 TensorCollectionData(TensorCollectionData&& other) = default;
0054 TensorCollectionData& operator=(TensorCollectionData&& other) = default;
0055
0056
0057
0058
0059 ~TensorCollectionData() = 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(TensorObj* obj);
0072
0073 bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0074
0075 private:
0076
0077
0078
0079 podio::UVecPtr<std::int64_t> m_vec_shape{nullptr};
0080 std::vector<podio::UVecPtr<std::int64_t>> m_vecs_shape{};
0081 podio::UVecPtr<float> m_vec_floatData{nullptr};
0082 std::vector<podio::UVecPtr<float>> m_vecs_floatData{};
0083 podio::UVecPtr<std::int64_t> m_vec_int64Data{nullptr};
0084 std::vector<podio::UVecPtr<std::int64_t>> m_vecs_int64Data{};
0085
0086
0087 podio::CollRefCollection m_refCollections{};
0088 podio::VectorMembersInfo m_vecmem_info{};
0089 std::unique_ptr<TensorDataContainer> m_data{nullptr};
0090 };
0091
0092
0093 }
0094
0095
0096 #endif