Skip to content
Snippets Groups Projects
Commit 513861bf authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'averbyts-master-patch-22690' into 'master'

Update METMonTool.cxx: remove duplicate condition to make cppcheck happy

See merge request atlas/athena!58977
parents 78e2972c 31ddcffe
No related branches found
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,!58977Update METMonTool.cxx: remove duplicate condition to make cppcheck happy
......@@ -351,7 +351,7 @@ StatusCode METMonTool::bookSourcesHistograms(std::string& metName, MonGroup& met
hTitle << "SumEt Distribution (" << metName << ")";
hxTitle << "SumEt (GeV)";
hyTitle << "Events";
if (metName == "MET_Cryo" || metName == "MET_MuonBoy" || metName == "MET_Cryo" || metName == "MET_CellOut_em")
if (metName == "MET_Cryo" || metName == "MET_MuonBoy" || metName == "MET_CellOut_em")
sumetmax = m_etrange*m_etrangeSumFactor*0.25;
h = new TH1F(hName.c_str(), hTitle.str().c_str(), m_etbin, sumetmin, sumetmax);
h->GetXaxis()->SetTitle(hxTitle.str().c_str());
......
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