Skip to content
Snippets Groups Projects
Commit 60026f6f authored by Petr Jacka's avatar Petr Jacka
Browse files

Fixed bug in BTaggingSelectionTool configuration for track jets

Former-commit-id: 39a7efde4351e346244f219100b23171bd19a3d9
parent 8c464b9b
No related branches found
No related tags found
No related merge requests found
...@@ -247,10 +247,10 @@ StatusCode FlavorTaggingCPTools::initialize() { ...@@ -247,10 +247,10 @@ StatusCode FlavorTaggingCPTools::initialize() {
top::check(btagsel->setProperty("OperatingPoint", btagWP), top::check(btagsel->setProperty("OperatingPoint", btagWP),
"Failed to set b-tagging selection tool OperatingPoint"); "Failed to set b-tagging selection tool OperatingPoint");
top::check(btagsel->setProperty("MinPt", top::check(btagsel->setProperty("MinPt",
static_cast<double>(m_config->jetPtcut())), static_cast<double>(m_config->trackJetPtcut())),
"Failed to set b-tagging selection tool MinPt"); "Failed to set b-tagging selection tool MinPt");
top::check(btagsel->setProperty("MaxEta", top::check(btagsel->setProperty("MaxEta",
static_cast<double>(m_config->jetEtacut())), static_cast<double>(m_config->trackJetEtacut())),
"Failed to set b-tagging selection tool MaxEta"); "Failed to set b-tagging selection tool MaxEta");
top::check(btagsel->initialize(), top::check(btagsel->initialize(),
"Failed to initialize b-tagging selection tool"); "Failed to initialize b-tagging selection tool");
......
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