[Rivet-svn] rivet: Cleanup, remove Et cut for leptons

Rivet Mercurial rivet at projects.hepforge.org
Fri Oct 2 15:15:01 BST 2015


details:   https://rivet.hepforge.org/hg/rivet/rev/58ac0fea2a88
branches:  release-2-3-x
changeset: 4885:58ac0fea2a88
user:      Holger Schulz <holger.schulz at durham.ac.uk>
date:      Fri Oct 02 15:10:45 2015 +0100
description:
Cleanup, remove Et cut for leptons

diffs (31 lines):

--- a/src/Analyses/D0_2000_I503361.cc	Thu Oct 01 15:26:54 2015 +0100
+++ b/src/Analyses/D0_2000_I503361.cc	Fri Oct 02 15:10:45 2015 +0100
@@ -24,12 +24,10 @@
     void init() {
 
       ///  Initialise and register projections here
-      ZFinder zfinder(FinalState(), Cuts::open(), PID::ELECTRON, 75*GeV, 105*GeV, 25.0*GeV, ZFinder::NOCLUSTER);
+      ZFinder zfinder(FinalState(), Cuts::open(), PID::ELECTRON, 75*GeV, 105*GeV, 0.0*GeV, ZFinder::NOCLUSTER);
       addProjection(zfinder, "ZFinder");
 
 
-      ///  Book histograms here, e.g.:
-      //      _hist_z_xs = bookHisto1D(1, 1, 1);
       _hist_zpt = bookHisto1D(1, 1, 1);
     }
 
@@ -53,14 +51,6 @@
       MSG_DEBUG("Dilepton mass = " << pZ.mass()/GeV << " GeV");
       _hist_zpt->fill(pZ.pT(), weight);
 
-      /// A posteriori trigger on both electrons to have E_T > 25 GeV
-      if (zfinder.constituents()[0].Et()/GeV < 25 || 
-          zfinder.constituents()[1].Et()/GeV < 25 ) {
-        MSG_DEBUG("E_T trigger failed: l1 = " 
-            <<  zfinder.constituents()[0].Et()/GeV << " GeV"
-            << " l2 = " << zfinder.constituents()[1].Et()/GeV);
-        vetoEvent;
-      }
     }
 
 


More information about the Rivet-svn mailing list