Skip to content
Snippets Groups Projects
Commit fa295244 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'master-dq-jettag-iso-scheduling' into 'master'

Add isolation decor handles for JetTagMonitoring

See merge request atlas/athena!38517
parents 9c57d314 6f21f1dd
No related branches found
No related tags found
No related merge requests found
......@@ -105,6 +105,11 @@ StatusCode JetTagMonitorAlgorithm::initialize() {
}
ATH_CHECK(m_btagResultKey.initialize(SG::AllowEmpty));
ATH_CHECK(m_MuonEtIsoDecorKey.initialize());
ATH_CHECK(m_MuonPtIsoDecorKey.initialize());
ATH_CHECK(m_EleEtIsoDecorKey.initialize());
ATH_CHECK(m_ElePtIsoDecorKey.initialize());
return StatusCode::SUCCESS;
}
......
......@@ -44,7 +44,13 @@ class JetTagMonitorAlgorithm : public AthMonitorAlgorithm {
SG::ReadHandleKey<xAOD::ElectronContainer> m_electronContainerKey;
SG::ReadDecorHandleKey<xAOD::JetContainer> m_btagLinkKey{this,"BTagLinkKey","","RDHK for btag links"};
SG::ReadDecorHandleKey<xAOD::BTaggingContainer> m_btagResultKey{this,"BTagResultKey","","RDHK for monitored BTag variables"};
// isolation decoration keys
SG::ReadDecorHandleKey<xAOD::MuonContainer> m_MuonEtIsoDecorKey { this, "MuonEtIsoDecorKey", "Muons.topoetcone20" };
SG::ReadDecorHandleKey<xAOD::MuonContainer> m_MuonPtIsoDecorKey { this, "MuonPtIsoDecorKey", "Muons.ptvarcone30" };
SG::ReadDecorHandleKey<xAOD::ElectronContainer> m_EleEtIsoDecorKey { this, "EleEtIsoDecorKey", "Electrons.topoetcone20" };
SG::ReadDecorHandleKey<xAOD::ElectronContainer> m_ElePtIsoDecorKey { this, "ElePtIsoDecorKey", "Electrons.ptvarcone20" };
bool m_skipJetFilter; //true for HI/HI-p collisions, false for pp collisions
std::string m_trackParticleName;
std::string m_primaryVertexName;
......
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