Skip to content
Snippets Groups Projects
Commit 5e86f891 authored by Ye Chen's avatar Ye Chen Committed by Graeme Stewart
Browse files

Fix some histogram bin for HI run and fix HI/pp flag (TrigMuonMonitoring-00-02-42)

  * Fix histogram bin and HI/pp flag
  * Tagging TrigMuonMonitoring-00-02-42
parent b45e67c4
No related merge requests found
......@@ -748,7 +748,7 @@ StatusCode HLTMuonMonTool::fill()
ATH_MSG_VERBOSE("fillCommon failed");
}
hist("Common_Counter", m_histdir )->Fill((float)EVENT);
if(m_HI_pp_mode)hist("HI_PP_Flag", m_histdir)->Fill(1);
if(!m_HI_pp_mode)hist("HI_PP_Flag", m_histdir)->Fill(0);
/*
auto chainGroup = getTDT()->getChainGroup("HLT_mu.*");
......
......@@ -181,9 +181,15 @@ StatusCode HLTMuonMonTool::bookMuZTPDQA()
level.push_back("EFL2");
if(isefisochain) level.push_back("EFIso");
for(unsigned int j=0;j<level.size();j++){
if(!m_HI_pp_mode){
addHistogram( new TH1F(("muZTP_Pt_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} (fired "+level[j]+")").c_str(), 25, 0.0, 25.0 ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Pt_EC_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} EC (fired "+level[j]+")").c_str(), 25, 0.0, 25.0 ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Pt_B_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} B (fired "+level[j]+")").c_str(), 25, 0.0, 25.0 ), histdirmuztp );
}else{
addHistogram( new TH1F(("muZTP_Pt_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} (fired "+level[j]+")").c_str(), 20, 0.0, 100.0 ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Pt_EC_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} EC (fired "+level[j]+")").c_str(), 20, 0.0, 100.0 ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Pt_B_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} B (fired "+level[j]+")").c_str(), 20, 0.0, 100.0 ), histdirmuztp );
}
addHistogram( new TH1F(("muZTP_Pt_4bins_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} (fired "+level[j]+")").c_str(), 4, ptbins ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Pt_B_4bins_"+level[j]+"fired_" + itmap->second).c_str(), ("p_{T} (fired "+level[j]+")").c_str(), 4, ptbins ), histdirmuztp );
addHistogram( new TH1F(("muZTP_Eta_"+level[j]+"fired_" + itmap->second).c_str(), ("#eta (fired "+level[j]+")").c_str(), 20, -2.7, 2.7 ), histdirmuztp );
......
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