Skip to content
Snippets Groups Projects
Commit a4d8e9a6 authored by Alexander Naip Tuna's avatar Alexander Naip Tuna Committed by Vakhtang Tsulaia
Browse files

Add BCID to MuonValidation/MuonTesterTree EventInfoBranch, too

Add BCID to MuonValidation/MuonTesterTree EventInfoBranch, too
parent 0cc9202d
Branches svn/tags/GAUDI_v19r3@6013
No related tags found
4 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58926Add BCID to MuonValidation/MuonTesterTree EventInfoBranch, too
......@@ -26,6 +26,7 @@ private:
ScalarBranch<uint32_t>& m_runNumber{m_parent.newScalar<uint32_t>("runNumber")};
ScalarBranch<uint32_t>& m_lbNumber{m_parent.newScalar<uint32_t>("lbNumber")};
ScalarBranch<uint32_t>& m_l1id{m_parent.newScalar<uint32_t>("l1id")};
ScalarBranch<uint32_t>& m_bcid{m_parent.newScalar<uint32_t>("bcid")};
ScalarBranch<uint32_t>& m_mcChannel{m_parent.newScalar<uint32_t>("mcChanneNumber")};
ScalarBranch<double>& m_weight{m_parent.newScalar<double>("evtWeight")};
......
......@@ -25,6 +25,7 @@ bool EventInfoBranch::fill(const EventContext& ctx) {
m_runNumber = evt_info->runNumber();
m_lbNumber = evt_info->lumiBlock();
m_l1id = evt_info->extendedLevel1ID();
m_bcid = evt_info->bcid();
if (m_ismc) {
m_mcChannel = evt_info->mcChannelNumber();
m_weight = evt_info->mcEventWeight(0);
......
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