InvMassFinalState.hh

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #ifndef RIVET_InvMassFinalState_HH
00003 #define RIVET_InvMassFinalState_HH
00004 
00005 #include "Rivet/Projections/FinalState.hh"
00006 
00007 namespace Rivet {
00008 
00009 
00010   /// Identify particles which can be paired to make an invariant mass within a given mass window
00011   class InvMassFinalState : public FinalState {
00012   public:
00013  
00014     // Constructor for a single inv-mass pair
00015     InvMassFinalState(const FinalState& fsp,
00016                       const std::pair<PdgId, PdgId>& idpair, // pair of decay products
00017                       double minmass, // min inv mass
00018                       double maxmass); // max inv mass
00019 
00020 
00021     InvMassFinalState(const FinalState& fsp,
00022                       const std::vector<std::pair<PdgId, PdgId> >& idpairs,  // vector of pairs of decay products
00023                       double minmass, // min inv mass
00024                       double maxmass); // max inv mass
00025  
00026  
00027     /// Clone on the heap.
00028     virtual const Projection* clone() const {
00029         return new InvMassFinalState(*this);
00030     }
00031 
00032 
00033   public:
00034 
00035     /// Constituent pairs
00036     const std::vector<std::pair<Particle, Particle> >& particlePairs() const;
00037         
00038 
00039   protected:
00040  
00041     /// Apply the projection on the supplied event.
00042     void project(const Event& e);
00043  
00044     /// Compare projections.
00045     int compare(const Projection& p) const;
00046 
00047 
00048   private:
00049  
00050     /// Handy typedef for a pair of PID codes
00051     typedef pair<PdgId,PdgId> PidPair;
00052 
00053     /// IDs of the decay products
00054     std::vector<PidPair> _decayids;
00055 
00056     /// Constituent pairs
00057     std::vector<std::pair<Particle, Particle> > _particlePairs;
00058 
00059     /// Min inv mass
00060     double _minmass;
00061 
00062     /// Max inv mass
00063     double _maxmass;
00064  
00065   };
00066 
00067 
00068 }
00069 
00070 
00071 #endif