[Rivet-svn] r1797 - trunk/src/Analyses/MC

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Tue Sep 1 10:26:02 BST 2009


Author: fsiegert
Date: Tue Sep  1 10:26:02 2009
New Revision: 1797

Log:
Make histo ranges more sane in MC_PHOTONJETS

Modified:
   trunk/src/Analyses/MC/MC_TVT1960_PHOTONJETS.cc

Modified: trunk/src/Analyses/MC/MC_TVT1960_PHOTONJETS.cc
==============================================================================
--- trunk/src/Analyses/MC/MC_TVT1960_PHOTONJETS.cc	Mon Aug 31 22:18:24 2009	(r1796)
+++ trunk/src/Analyses/MC/MC_TVT1960_PHOTONJETS.cc	Tue Sep  1 10:26:02 2009	(r1797)
@@ -40,8 +40,8 @@
     
     /// Book histograms
     void init() {
-      _h_photon_pT = bookHistogram1D("photon_pT", 100, 0.0, 500.0);
-      _h_photon_y = bookHistogram1D("photon_y", 40, -4.0, 4.0);
+      _h_photon_pT = bookHistogram1D("photon_pT", 50, 0.0, 500.0);
+      _h_photon_y = bookHistogram1D("photon_y", 20, -1.0, 1.0);
       _h_photon_jet1_deta = bookHistogram1D("photon_jet1_deta", 50, -5.0, 5.0);
       _h_photon_jet1_dR = bookHistogram1D("photon_jet1_dR", 25, 0.5, 7.0);
 
@@ -59,11 +59,7 @@
         vetoEvent;
       }
       const FourMomentum photon = photons.front().momentum();
-      if (photon.pT()/GeV < 30) {
-        getLog() << Log::DEBUG << "Leading photon has pT < 30 GeV: " << photon.pT()/GeV << endl;
-        vetoEvent;
-      }
-
+      
       // Get all charged particles
       const FinalState& fs = applyProjection<FinalState>(e, "JetFS");
       if (fs.empty()) {


More information about the Rivet-svn mailing list