diff --git a/Tracking/Acts/ActsEventCnv/src/ActsToTrkConverterTool.cxx b/Tracking/Acts/ActsEventCnv/src/ActsToTrkConverterTool.cxx index c29690e92011deb92d04915b78499a35610f7767..fca3bc3a6949a66d1674a890d8c905244aefbd9e 100644 --- a/Tracking/Acts/ActsEventCnv/src/ActsToTrkConverterTool.cxx +++ b/Tracking/Acts/ActsEventCnv/src/ActsToTrkConverterTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration */ #include "ActsToTrkConverterTool.h" @@ -232,7 +232,7 @@ ActsTrk::ActsToTrkConverterTool::actsTrackParametersToTrkParameters( std::optional<AmgSymMatrix(5)> cov = std::nullopt; if (actsParameter.covariance()) { AmgSymMatrix(5) - newcov(actsParameter.covariance()->topLeftCorner<5, 5>(0, 0)); + newcov(actsParameter.covariance()->topLeftCorner<5, 5>()); // Convert the covariance matrix to GeV for (int i = 0; i < newcov.rows(); i++) { newcov(i, 4) = newcov(i, 4) * 1_MeV;