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

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Wed Oct 7 15:58:17 BST 2009


Author: buckley
Date: Wed Oct  7 15:58:17 2009
New Revision: 1884

Log:
Correct typo on muon iteration, which was re-running on electrons.

Modified:
   trunk/src/Analyses/MC_LHC_SUSY.cc

Modified: trunk/src/Analyses/MC_LHC_SUSY.cc
==============================================================================
--- trunk/src/Analyses/MC_LHC_SUSY.cc	Tue Oct  6 18:58:25 2009	(r1883)
+++ trunk/src/Analyses/MC_LHC_SUSY.cc	Wed Oct  7 15:58:17 2009	(r1884)
@@ -149,7 +149,7 @@
       const FinalState& mufs = applyProjection<FinalState>(evt, "Muons");
       _hist_n_mu->fill(mufs.size(), weight);
       vector<FourMomentum> mupluses, muminuses;
-      foreach (const Particle& mu, efs.particles()) {
+      foreach (const Particle& mu, mufs.particles()) {
         const FourMomentum& p = mu.momentum();
         _hist_phi_mu->fill(mapAngleMPiToPi(p.phi()), weight);
         _hist_eta_mu->fill(p.eta(), weight);


More information about the Rivet-svn mailing list