Skip to content
Snippets Groups Projects
Commit 266fd3cf authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'addEarlyRejectionToRatesOverlap' into 'master'

Add prescale check to rates combinatorics [standalone code]

See merge request atlas/athena!21846
parents 7a880349 e4c95b62
No related branches found
No related tags found
No related merge requests found
......@@ -680,6 +680,9 @@ namespace TrigCostRootAnalysis {
if (counterA->getStrDecoration(kDecType) != "Chain") {
continue; // I'm not a HLT chain counter - next
}
if (isZero(counterA->getDecoration(kDecPrescaleVal) + 1)) {
continue; // Prescaled out in rates processing
}
if (checkPatternOverlap(counterA->getName(), kFALSE) == kFALSE) continue;
......@@ -691,6 +694,9 @@ namespace TrigCostRootAnalysis {
if (counterB->getStrDecoration(kDecType) != "Chain") {
continue; // I'm not a HLT chain counter - next
}
if (isZero(counterB->getDecoration(kDecPrescaleVal) + 1)) {
continue; // Prescaled out in rates processing
}
// Same group?
if (Config::config().getInt(kDoGroupOverlap) == kTRUE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment