Skip to content

Commit

Permalink
fix mistake zmax
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisFelipeCoelho committed Mar 13, 2023
1 parent 56a162e commit 28d0cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/include/Acts/Seeding/SeedFinder.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ void SeedFinder<external_spacepoint_t, platform_t>::createSeedsForGroupPPP(
break;
}

float zM = spM->z();

/// for the central SP, we veto locations on the last disk -
/// there would be no "outer" hits to complete a seed.
if (zM > 2700 or zM < -2700) {
Expand All @@ -296,8 +298,6 @@ void SeedFinder<external_spacepoint_t, platform_t>::createSeedsForGroupPPP(
continue;
}

float zM = spM->z();

// // apply cut on the number of top SP if seedConfirmation is true
// SeedFilterState seedFilterState;
// // if (m_config.seedConfirmation) {
Expand Down

0 comments on commit 28d0cc9

Please sign in to comment.