Skip to content

Commit

Permalink
Remove 2nd-time cut on impact param.
Browse files Browse the repository at this point in the history
  • Loading branch information
rekovic committed Feb 4, 2021
1 parent 05c44f3 commit 19397c1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions L1Trigger/L1TGlobal/src/MuCondition.cc
Expand Up @@ -470,18 +470,6 @@ const bool l1t::MuCondition::checkObjectParameter(const int iCondition,
return false;
}

// check impact parameter ( bit check ) with impact parameter LUT
// sanity check on candidate impact parameter
if (cand.hwDXY() > 3) {
LogDebug("L1TGlobal") << "\t\t l1t::Candidate has out of range hwDXY = " << cand.hwDXY() << std::endl;
return false;
}
bool passImpactParameterLUT = ((objPar.impactParameterLUT >> cand.hwDXY()) & 1);
if (!passImpactParameterLUT) {
LogDebug("L1TGlobal") << "\t\t l1t::Candidate failed impact parameter requirement" << std::endl;
return false;
}

// A number of values is required to trigger (at least one).
// "Don’t care" means that all values are allowed.
// Qual = 000 means then NO MUON (GTL module)
Expand Down

0 comments on commit 19397c1

Please sign in to comment.