Skip to content
Snippets Groups Projects
Commit 61f62f0d authored by Bertrand Laforge's avatar Bertrand Laforge
Browse files

correct stupid bug on pt threshold of egamma objects going to DQ egamma monitoring histograms

parent d88d9fbb
No related branches found
No related tags found
No related merge requests found
...@@ -374,7 +374,7 @@ StatusCode electronMonTool::fillHistogramsForOneElectron(xAOD::ElectronContainer ...@@ -374,7 +374,7 @@ StatusCode electronMonTool::fillHistogramsForOneElectron(xAOD::ElectronContainer
ATH_MSG_DEBUG("electrons et, eta and phi" << et << " " << eta << " " << phi); ATH_MSG_DEBUG("electrons et, eta and phi" << et << " " << eta << " " << phi);
if (et>2500) return StatusCode::SUCCESS; if (et<2500) return StatusCode::SUCCESS;
++myHist.m_nElectronsPerRegion[ir]; ++myHist.m_nElectronsPerRegion[ir];
++myHist.m_nElectrons; ++myHist.m_nElectrons;
......
...@@ -252,7 +252,7 @@ StatusCode forwardElectronMonTool::fillHistograms() ...@@ -252,7 +252,7 @@ StatusCode forwardElectronMonTool::fillHistograms()
int ir = GetForwardRegion(eta); int ir = GetForwardRegion(eta);
//ATH_MSG_DEBUG("electrons et, eta and phi" << et << " " << eta << " " << phi); //ATH_MSG_DEBUG("electrons et, eta and phi" << et << " " << eta << " " << phi);
if (et>5000) return StatusCode::SUCCESS; if (et<5000) return StatusCode::SUCCESS;
// Isolation Energy // Isolation Energy
//float topoetcone40 = -999.; //float topoetcone40 = -999.;
......
...@@ -425,7 +425,7 @@ StatusCode photonMonTool::fillHistogramsForOnePhoton(xAOD::PhotonContainer::cons ...@@ -425,7 +425,7 @@ StatusCode photonMonTool::fillHistogramsForOnePhoton(xAOD::PhotonContainer::cons
//ATH_MSG_DEBUG("photon et, eta and phi " << et << " " << eta << " " << phi << " region " << ir << " defined " << myHist.m_hvEt.size()); //ATH_MSG_DEBUG("photon et, eta and phi " << et << " " << eta << " " << phi << " region " << ir << " defined " << myHist.m_hvEt.size());
if (et>2500) return StatusCode::SUCCESS; if (et<2500) return StatusCode::SUCCESS;
++myHist.m_nPhotonsPerRegion[ir]; ++myHist.m_nPhotonsPerRegion[ir];
++myHist.m_nPhotons; ++myHist.m_nPhotons;
......
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