Skip to content

Commit

Permalink
Merge pull request #46687 from AdrianoDee/fix_hits_in_module_converte…
Browse files Browse the repository at this point in the history
…r_141X

[14_1_X] Fix `maxHitsInModule` for `SiPixelRecHitFromSoAAlpaka`
  • Loading branch information
cmsbuild authored Nov 13, 2024
2 parents 95c6807 + 9b8e10f commit a24b39e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ void SiPixelRecHitFromSoAAlpaka<TrackerTraits>::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;
Expand Down

0 comments on commit a24b39e

Please sign in to comment.