ChargedLeptons.cc

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #include "Rivet/Tools/Logging.hh"
00003 #include "Rivet/Projections/ChargedLeptons.hh"
00004 #include "Rivet/Cmp.hh"
00005 #include "Rivet/Tools/ParticleIdUtils.hh"
00006 
00007 namespace Rivet {
00008 
00009 
00010   int ChargedLeptons::compare(const Projection& other) const {
00011     return mkNamedPCmp(other, "ChFS");
00012   }
00013 
00014 
00015   void ChargedLeptons::project(const Event& evt) {
00016     // Reset result
00017     _theChargedLeptons.clear();
00018 
00019     // Loop over charged particles and fill vector with leptons
00020     const FinalState& fs = applyProjection<FinalState>(evt, "ChFS");
00021     foreach (const Particle& p, fs.particles()) {
00022       if (PID::isLepton(p.pdgId())) {
00023         _theChargedLeptons += Particle(p);
00024       }
00025     }
00026   }
00027 
00028 
00029 }