Skip to content

Commit

Permalink
fix bug in extended seeding (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgsavard authored and skinnari committed Jun 8, 2021
1 parent 9d877e1 commit 32fa497
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions L1Trigger/TrackFindingTracklet/src/VMRouter.cc
Expand Up @@ -334,9 +334,8 @@ void VMRouter::execute() {
if (settings_.extended() &&
(iseed == Seed::L3L4 || iseed == Seed::L5L6 || iseed == Seed::D1D2 || iseed == Seed::L2L3D1)) {
int lutval2 = innerThirdTable_.lookup((indexz << nbitsrfinebintable_) + indexr);
if (lutval2 == -1)
continue;
lutval += (lutval2 << 10);
if (lutval2 != -1)
lutval += (lutval2 << 10);
}
}

Expand Down

0 comments on commit 32fa497

Please sign in to comment.