Skip to content
Snippets Groups Projects

Add prescale check to rates combinatorics [standalone code]

Merged Tim Martin requested to merge tamartin/athena:addEarlyRejectionToRatesOverlap into master
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading