From f50c490bb587e732b5ce7a16462297477c2ed769 Mon Sep 17 00:00:00 2001 From: Joana Niermann Date: Fri, 29 Nov 2024 17:56:40 +0100 Subject: [PATCH] test smatrix --- .../smatrix/include/algebra/storage/impl/smatrix_getter.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/storage/smatrix/include/algebra/storage/impl/smatrix_getter.hpp b/storage/smatrix/include/algebra/storage/impl/smatrix_getter.hpp index 50760897..2feae79c 100644 --- a/storage/smatrix/include/algebra/storage/impl/smatrix_getter.hpp +++ b/storage/smatrix/include/algebra/storage/impl/smatrix_getter.hpp @@ -137,7 +137,10 @@ struct block_getter { const ROOT::Math::SMatrix &m, unsigned int row, unsigned int col) const { - return m.template SubCol>(col, row); + ROOT::Math::SMatrix tmp = m.template Sub>(row, col); + + return tmp; + //return m.template SubCol>(col, row); } }; // struct block_getter