Skip to content

Commit

Permalink
trovato issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni authored and cvarni committed Oct 9, 2024
1 parent 94698b3 commit cc83b72
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Examples/Algorithms/TrackFinding/src/SeedingAlgorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ ActsExamples::SeedingAlgorithm::SeedingAlgorithm(
}
}

m_cfg.gridConfig.rBinEdges = {0, 1};

if (m_cfg.useExtraCuts) {
// This function will be applied to select space points during grid filling
m_cfg.seedFinderConfig.spacePointSelector
Expand All @@ -191,9 +193,9 @@ ActsExamples::SeedingAlgorithm::SeedingAlgorithm(
Acts::detail::RefHolder>::SpacePointProxyType;

m_bottomBinFinder = std::make_unique<const Acts::GridBinFinder<3ul>>(
m_cfg.numPhiNeighbors, cfg.zBinNeighborsBottom, 0);
m_cfg.numPhiNeighbors, cfg.zBinNeighborsBottom, 0);
m_topBinFinder = std::make_unique<const Acts::GridBinFinder<3ul>>(
m_cfg.numPhiNeighbors, m_cfg.zBinNeighborsTop, 0);
m_cfg.numPhiNeighbors, m_cfg.zBinNeighborsTop, 0);

m_cfg.seedFinderConfig.seedFilter =
std::make_unique<Acts::SeedFilter<SpacePointProxy_type>>(
Expand Down

0 comments on commit cc83b72

Please sign in to comment.