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

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Tue May 11 02:47:01 BST 2010


Author: buckley
Date: Tue May 11 12:17:00 2010
New Revision: 2442

Log:
Somehow this sneaked through before...

Modified:
   trunk/src/Analyses/CDF_1994_S2952106.cc

Modified: trunk/src/Analyses/CDF_1994_S2952106.cc
==============================================================================
--- trunk/src/Analyses/CDF_1994_S2952106.cc	Tue May 11 11:58:03 2010	(r2441)
+++ trunk/src/Analyses/CDF_1994_S2952106.cc	Tue May 11 12:17:00 2010	(r2442)
@@ -117,8 +117,9 @@
 
       // Check there isn't too much missing Et
       const MissingMomentum& caloMissEt = applyProjection<MissingMomentum>(event, "CalMET");
-      getLog() << Log::DEBUG << "Missing pT = " << caloMissEt.momentum().pT()/GeV << " GeV" << endl;
-      if ((caloMissEt.momentum().pT()/GeV)/sqrt(caloMissEt.momentum().Et()/GeV) > 6.0) vetoEvent;
+      getLog() << Log::DEBUG << "Missing ET = " << caloMissEt.visibleMomentum().ET()/GeV << " GeV" << endl;
+      /// @todo Looks dodgy to me... only difference is pT vs. Et. Really?
+      if ((caloMissEt.visibleMomentum().pT()/GeV)/sqrt(caloMissEt.visibleMomentum().Et()/GeV) > 6.0) vetoEvent;
 
       // Check jet requirements
       if (jets.size() < 3) vetoEvent;


More information about the Rivet-svn mailing list