Skip to content

Commit

Permalink
Fix Ecal R9 definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Menglei committed Feb 6, 2015
1 parent 1d36354 commit 2a8d2d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DQMOffline/Ecal/plugins/EcalPileUpDepMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ void EcalPileUpDepMonitor::analyze(const edm::Event& e, const edm::EventSetup&)


float e3x3 = EcalClusterTools::e3x3(seedCluster, eeRecHits, p_topology);
float r9 = e3x3 / itSC->energy();
float r9 = e3x3 / itSC->rawEnergy();

r9_EE->Fill(r9);
scSigmaIetaIeta_EE->Fill(sigmaIetaIeta);
Expand Down Expand Up @@ -390,7 +390,7 @@ void EcalPileUpDepMonitor::analyze(const edm::Event& e, const edm::EventSetup&)


float e3x3 = EcalClusterTools::e3x3(seedCluster, ebRecHits, p_topology);
float r9 = e3x3 / itSC->energy();
float r9 = e3x3 / itSC->rawEnergy();

r9_EB->Fill(r9);
scSigmaIetaIeta_EB->Fill(sigmaIetaIeta);
Expand Down

0 comments on commit 2a8d2d1

Please sign in to comment.