Skip to content

Commit

Permalink
Merge pull request #14973 from Martin-Grunewald/PrescaleAccounting81X
Browse files Browse the repository at this point in the history
Fix HLTL1TSeed accounting for prescale handling (81X)
  • Loading branch information
davidlange6 committed Jun 26, 2016
2 parents 2419d4c + 44f5259 commit 7a2c1e8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions HLTrigger/HLTcore/src/HLTConfigData.cc
Expand Up @@ -165,8 +165,12 @@ void HLTConfigData::extract()
if (label.front()!='-' && moduleType(label) == "HLTL1TSeed") {
const ParameterSet& pset(modulePSet(label));
if (pset!=ParameterSet()) {
const string l1Seed(pset.getParameter<string>("L1SeedsLogicalExpression"));
hltL1TSeeds_[i].push_back(l1Seed);
const string l1Gtag(pset.getParameter<edm::InputTag>("L1GlobalInputTag").label());
// Emulator output is used to ignore L1T prescales
if (l1Gtag!="hltGtStage2ObjectMap") {
const string l1Seed(pset.getParameter<string>("L1SeedsLogicalExpression"));
hltL1TSeeds_[i].push_back(l1Seed);
}
}
}
}
Expand Down

0 comments on commit 7a2c1e8

Please sign in to comment.