@@ -206,7 +206,7 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
206206 const bool shiftRefToCluster,
207207 const int nLayers,
208208 const int phiBins,
209- const int beamWidthConfig ,
209+ const int maxHypothesesConfig ,
210210 const bool extendTop,
211211 const bool extendBot,
212212 const float nSigmaCutPhi,
@@ -236,10 +236,10 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
236236 repeatRefitOut);
237237 if (refitSuccess) {
238238 if ((extendTop || extendBot) && activeHypothesesScratch && nextHypothesesScratch) {
239- const int beamWidth = o2::gpu::CAMath::Max (beamWidthConfig , 1 );
239+ const int maxHypotheses = o2::gpu::CAMath::Max (maxHypothesesConfig , 1 );
240240 const int threadIndex = blockIdx .x * blockDim .x + threadIdx .x ;
241- auto * activeHypotheses = activeHypothesesScratch + threadIndex * beamWidth ;
242- auto * nextHypotheses = nextHypothesesScratch + threadIndex * beamWidth ;
241+ auto * activeHypotheses = activeHypothesesScratch + threadIndex * maxHypotheses ;
242+ auto * nextHypotheses = nextHypothesesScratch + threadIndex * maxHypotheses ;
243243 const auto backupPattern = temporaryTrack.getPattern ();
244244 auto best = temporaryTrack;
245245 uint32_t bestDiff{0 };
@@ -266,7 +266,7 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
266266 layerxX0,
267267 nLayers,
268268 phiBins,
269- beamWidth ,
269+ maxHypotheses ,
270270 bz,
271271 maxChi2ClusterAttachment,
272272 maxChi2NDF,
@@ -301,7 +301,7 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
301301 layerxX0,
302302 nLayers,
303303 phiBins,
304- beamWidth ,
304+ maxHypotheses ,
305305 bz,
306306 maxChi2ClusterAttachment,
307307 maxChi2NDF,
@@ -337,7 +337,7 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
337337 layerxX0,
338338 nLayers,
339339 phiBins,
340- beamWidth ,
340+ maxHypotheses ,
341341 bz,
342342 maxChi2ClusterAttachment,
343343 maxChi2NDF,
@@ -370,7 +370,7 @@ GPUg() void __launch_bounds__(256, 1) fitTrackSeedsKernel(
370370 layerxX0,
371371 nLayers,
372372 phiBins,
373- beamWidth ,
373+ maxHypotheses ,
374374 bz,
375375 maxChi2ClusterAttachment,
376376 maxChi2NDF,
@@ -1343,7 +1343,7 @@ void computeTrackSeedHandler(TrackSeed<NLayers>* trackSeeds,
13431343 const bool shiftRefToCluster,
13441344 const int nLayers,
13451345 const int phiBins,
1346- const int beamWidth ,
1346+ const int maxHypotheses ,
13471347 const bool extendTop,
13481348 const bool extendBot,
13491349 const float nSigmaCutPhi,
@@ -1382,7 +1382,7 @@ void computeTrackSeedHandler(TrackSeed<NLayers>* trackSeeds,
13821382 shiftRefToCluster, // bool
13831383 nLayers, // int
13841384 phiBins, // int
1385- beamWidth, // int
1385+ maxHypotheses, // int
13861386 extendTop, // bool
13871387 extendBot, // bool
13881388 nSigmaCutPhi, // float
@@ -1584,7 +1584,7 @@ template void computeTrackSeedHandler(TrackSeed<7>* trackSeeds,
15841584 const bool shiftRefToCluster,
15851585 const int nLayers,
15861586 const int phiBins,
1587- const int beamWidth ,
1587+ const int maxHypotheses ,
15881588 const bool extendTop,
15891589 const bool extendBot,
15901590 const float nSigmaCutPhi,
@@ -1784,7 +1784,7 @@ template void computeTrackSeedHandler(TrackSeed<11>* trackSeeds,
17841784 const bool shiftRefToCluster,
17851785 const int nLayers,
17861786 const int phiBins,
1787- const int beamWidth ,
1787+ const int maxHypotheses ,
17881788 const bool extendTop,
17891789 const bool extendBot,
17901790 const float nSigmaCutPhi,
0 commit comments