acts-project/acts

`AdaptiveGridTrackDensity` has a hidden `d0` cut

Opened this issue · 1 comments

// Calculate bin in d direction
int centralDBin = getBin(impactParams(0), m_cfg.spatialBinExtent);
// Check if current track affects grid density
if (std::abs(centralDBin) > (m_cfg.spatialTrkGridSize - 1) / 2.) {
DensityMap emptyTrackDensityMap;
return emptyTrackDensityMap;
}

I think this should be rather done with a track selection before the vertexing is invoked

This issue/PR has been automatically marked as stale because it has not had recent activity. The stale label will be removed if any interaction occurs.