[Rivet-svn] r3620 - in trunk: . src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Fri Mar 16 17:50:32 GMT 2012


Author: buckley
Date: Fri Mar 16 17:50:32 2012
New Revision: 3620

Log:
Typo fix and changelog update

Modified:
   trunk/ChangeLog
   trunk/src/Analyses/ATLAS_2011_S8994773.cc

Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog	Fri Mar 16 17:50:18 2012	(r3619)
+++ trunk/ChangeLog	Fri Mar 16 17:50:32 2012	(r3620)
@@ -1,3 +1,11 @@
+2012-03-16  Andy Buckley  <andy.buckley at cern.ch>
+
+	* src/Analyses/LHCB_2011_I917009.cc: Hiding lifetime-lookup error
+	message if the offending particle is not a hadron.
+
+	* include/Rivet/Math/MathHeader.hh: Using unnamespaced std::isnan
+	and std::isinf as standard.
+
 2012-03-16  Hendrik Hoeth <hendrik.hoeth at cern.ch>
 
 	* Improve default plot behaviour for 2D histograms

Modified: trunk/src/Analyses/ATLAS_2011_S8994773.cc
==============================================================================
--- trunk/src/Analyses/ATLAS_2011_S8994773.cc	Fri Mar 16 17:50:18 2012	(r3619)
+++ trunk/src/Analyses/ATLAS_2011_S8994773.cc	Fri Mar 16 17:50:32 2012	(r3620)
@@ -57,8 +57,8 @@
       Particle p_lead = particles500[0];
       const double philead = p_lead.momentum().phi();
       const double etalead = p_lead.momentum().eta();
-      const double pTlead  = p_lead.momentum().perp();
-      MSG_DEBUG("Leading oject: pT = " << pTlead << ", eta = " << etalead << ", phi = " << philead);
+      const double pTlead  = p_lead.momentum().pT();
+      MSG_DEBUG("Leading object: pT = " << pTlead << ", eta = " << etalead << ", phi = " << philead);
 
       // Iterate over all > 500 MeV particles and count particles and scalar pTsum in the three regions
       vector<double> num500(3, 0), ptSum500(3, 0.0);


More information about the Rivet-svn mailing list