[Rivet-svn] r3968 - branches/2012-06-aidarivet/src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Wed Oct 17 15:26:40 BST 2012


Author: richardn
Date: Wed Oct 17 15:26:40 2012
New Revision: 3968

Log:
fix to avoid zero HT and division by zero

Modified:
   branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1117704.cc

Modified: branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1117704.cc
==============================================================================
--- branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1117704.cc	Wed Oct 17 15:10:40 2012	(r3967)
+++ branches/2012-06-aidarivet/src/Analyses/ATLAS_2012_I1117704.cc	Wed Oct 17 15:26:40 2012	(r3968)
@@ -190,6 +190,8 @@
         if(recon_jets[ix].momentum().pT()>55.*GeV) ++njet55;
       }
 
+      if(njet55==0) vetoEvent;
+
       double ratio = eTmiss/sqrt(HT);
 
       if(ratio>4.) {


More information about the Rivet-svn mailing list