diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp index 4db2b725fc5..9c30d2f36c4 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp @@ -200,13 +200,13 @@ class MappingMaterialDecorator : public IMaterialDecorator { radialBounds->get(Acts::RadialBounds::eHalfPhiSector), (radialBounds->get(Acts::RadialBounds::eHalfPhiSector) - std::numbers::pi) < Acts::s_epsilon - ? Acts::closed - : Acts::open, - Acts::BinningValue::binPhi); - bUtility += Acts::BinUtility(binning.second, - static_cast(radialBounds->rMin()), - static_cast(radialBounds->rMax()), - Acts::open, Acts::BinningValue::binR); + ? Acts::AxisBoundaryType::Closed + : Acts::AxisBoundaryType::Bound, + Acts::AxisDirection::AxisPhi); + bUtility += Acts::BinUtility( + binning.second, static_cast(radialBounds->rMin()), + static_cast(radialBounds->rMax()), + Acts::AxisBoundaryType::Bound, Acts::AxisDirection::AxisR); } if (cylinderBounds != nullptr) { bUtility += Acts::BinUtility( diff --git a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp index 6a7202332f4..8adbd993ce3 100644 --- a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp +++ b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp @@ -92,9 +92,8 @@ struct PlanarSurfaceTestBeds { Acts::BinUtility stripsPhi(1, rmin, rmax, Acts::AxisBoundaryType::Bound, Acts::AxisDirection::AxisR); stripsPhi += Acts::BinUtility( - 25, std::numbers::pi / 2. - alpha, - std::numbers::pi / 2. + alpha Acts::AxisBoundaryType::Bound, - Acts::AxisDirection::AxisPhi); + 25, std::numbers::pi / 2. - alpha, std::numbers::pi / 2. + alpha, + Acts::AxisBoundaryType::Bound, Acts::AxisDirection::AxisPhi); TrapezoidRandom dtRandom(xmin * rScale, xmax * rScale, rmin * irScale, ymax * rScale);