00001
00002 #ifndef RIVET_InvMassFinalState_HH
00003 #define RIVET_InvMassFinalState_HH
00004
00005 #include "Rivet/Projections/FinalState.hh"
00006
00007 namespace Rivet {
00008
00009
00010
00011 class InvMassFinalState : public FinalState {
00012 public:
00013
00014
00015 InvMassFinalState(const FinalState& fsp,
00016 const std::pair<PdgId, PdgId>& idpair,
00017 double minmass,
00018 double maxmass);
00019
00020
00021 InvMassFinalState(const FinalState& fsp,
00022 const std::vector<std::pair<PdgId, PdgId> >& idpairs,
00023 double minmass,
00024 double maxmass);
00025
00026
00027
00028 virtual const Projection* clone() const {
00029 return new InvMassFinalState(*this);
00030 }
00031
00032
00033 public:
00034
00035
00036 const std::vector<std::pair<Particle, Particle> >& particlePairs() const;
00037
00038
00039 protected:
00040
00041
00042 void project(const Event& e);
00043
00044
00045 int compare(const Projection& p) const;
00046
00047
00048 private:
00049
00050
00051 typedef pair<PdgId,PdgId> PidPair;
00052
00053
00054 std::vector<PidPair> _decayids;
00055
00056
00057 std::vector<std::pair<Particle, Particle> > _particlePairs;
00058
00059
00060 double _minmass;
00061
00062
00063 double _maxmass;
00064
00065 };
00066
00067
00068 }
00069
00070
00071 #endif