From 573de612649ef0ee6e7dbce26a4c75e4e6132d04 Mon Sep 17 00:00:00 2001 From: cvarni Date: Thu, 10 Oct 2024 13:48:08 +0200 Subject: [PATCH] z and r axis in greid for seeding are Open instead of Bound --- .../include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp | 4 ++-- .../include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp index 5a72449373a..7b020010771 100644 --- a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp +++ b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp @@ -23,8 +23,8 @@ template using CylindricalSpacePointGrid = Acts::Grid< std::vector, Acts::Axis, - Acts::Axis, - Acts::Axis>; + Acts::Axis, + Acts::Axis>; /// Cylindrical Binned Group template diff --git a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp index a21c08abd63..062aa7595ef 100644 --- a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp +++ b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp @@ -139,8 +139,8 @@ Acts::CylindricalSpacePointGridCreator::createGrid( config.rBinEdges.end()); } - Axis zAxis(std::move(zValues)); - Axis rAxis(std::move(rValues)); + Axis zAxis(std::move(zValues)); + Axis rAxis(std::move(rValues)); return Acts::CylindricalSpacePointGrid( std::make_tuple(std::move(phiAxis), std::move(zAxis), std::move(rAxis))); }