From deab3d20be9caf5b30cde629a4f351be3c8ef5c4 Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Fri, 29 Nov 2024 14:31:10 +0100 Subject: [PATCH] fix symbol --- Plugins/EDM4hep/src/EDM4hepUtil.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Plugins/EDM4hep/src/EDM4hepUtil.cpp b/Plugins/EDM4hep/src/EDM4hepUtil.cpp index 69952f85552..60d466d0427 100644 --- a/Plugins/EDM4hep/src/EDM4hepUtil.cpp +++ b/Plugins/EDM4hep/src/EDM4hepUtil.cpp @@ -24,7 +24,8 @@ #include #include -namespace Acts::EDM4hepUtil::detail { +namespace Acts::EDM4hepUtil { +namespace detail { ActsSquareMatrix<6> jacobianToEdm4hep(double theta, double qOverP, double Bz) { // Calculate jacobian from our internal parametrization (d0, z0, phi, theta, @@ -189,6 +190,8 @@ BoundTrackParameters convertTrackParametersFromEdm4hep( return {params.surface, targetPars, cov, params.particleHypothesis}; } +} // namespace detail + #if EDM4HEP_VERSION_MAJOR >= 1 || \ (EDM4HEP_VERSION_MAJOR == 0 && EDM4HEP_VERSION_MINOR == 99) edm4hep::MCParticle getParticle(const edm4hep::SimTrackerHit& hit) { @@ -210,4 +213,4 @@ void setParticle(edm4hep::MutableSimTrackerHit& hit, } #endif -} // namespace Acts::EDM4hepUtil::detail +} // namespace Acts::EDM4hepUtil