From 2c3f90d5beee66b2ba9f6efb796b89680d85b32b Mon Sep 17 00:00:00 2001 From: AdrianoDee Date: Wed, 13 Nov 2024 08:59:37 +0100 Subject: [PATCH] Fix maxHitsInModule for SiPixelRecHitFromSoAAlpaka --- .../SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RecoLocalTracker/SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc b/RecoLocalTracker/SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc index a76ff6af49ac9..3b8c5371649f0 100644 --- a/RecoLocalTracker/SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc +++ b/RecoLocalTracker/SiPixelRecHits/plugins/SiPixelRecHitFromSoAAlpaka.cc @@ -100,7 +100,7 @@ void SiPixelRecHitFromSoAAlpaka::produce(edm::StreamID streamID, auto const hclusters = iEvent.getHandle(clusterToken_); - constexpr uint32_t maxHitsInModule = pixelClustering::maxHitsInModule(); + constexpr uint32_t maxHitsInModule = TrackerTraits::maxHitsInModule; int numberOfDetUnits = 0; int numberOfClusters = 0;