[Rivet-svn] r3444 - trunk/src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Sun Oct 16 13:53:18 BST 2011


Author: richardn
Date: Sun Oct 16 13:53:18 2011
New Revision: 3444

Log:
fix for histogram duplicated in base class

Modified:
   trunk/src/Analyses/MC_WWJETS.cc

Modified: trunk/src/Analyses/MC_WWJETS.cc
==============================================================================
--- trunk/src/Analyses/MC_WWJETS.cc	Fri Oct 14 08:18:13 2011	(r3443)
+++ trunk/src/Analyses/MC_WWJETS.cc	Sun Oct 16 13:53:18 2011	(r3444)
@@ -74,7 +74,6 @@
 
       // global stuff
       _h_HT = bookHistogram1D("HT", logBinEdges(100, 100.0, 0.5*sqrtS()));
-      _h_jets_dphi_12 = bookHistogram1D("jets_dphi_12", 25, 0.0, PI);
       _h_jets_m_12 = bookHistogram1D("jets_m_12", logBinEdges(100, 1.0, 0.25*sqrtS()));
 
       MC_JetAnalysis::init();
@@ -156,7 +155,6 @@
       if (jets.size()>1) {
         FourMomentum jet1(jets[0].momentum());
         FourMomentum jet2(jets[1].momentum());
-        _h_jets_dphi_12->fill(mapAngle0ToPi(jet1.phi()-jet2.phi()), weight);
         _h_jets_m_12->fill(FourMomentum(jet1+jet2).mass(), weight);
       }
 
@@ -188,7 +186,6 @@
       scale(_h_WW_jet1_deta, norm);
       scale(_h_WW_jet1_dR, norm);
       scale(_h_We_jet1_dR, norm);
-      scale(_h_jets_dphi_12, norm);
       scale(_h_jets_m_12, norm);
       scale(_h_HT, norm);
 


More information about the Rivet-svn mailing list