rivet is hosted by Hepforge, IPPP Durham
Rivet 4.0.0
ConstLossyFinalState.hh
1// -*- C++ -*-
2#ifndef RIVET_ConstLossyFinalState_HH
3#define RIVET_ConstLossyFinalState_HH
4
5#include "Rivet/Tools/Logging.hh"
6#include "Rivet/Tools/Random.hh"
7#include "Rivet/Config/RivetCommon.hh"
8#include "Rivet/Particle.hh"
9#include "Rivet/Event.hh"
10#include "Rivet/Projection.hh"
11#include "Rivet/Projections/FinalState.hh"
12#include "Rivet/Projections/LossyFinalState.hh"
13
14namespace Rivet {
15
16
19 public:
20
21 ConstRandomFilter(double lossFraction)
22 : _lossFraction(lossFraction)
23 {
24 assert(_lossFraction >= 0);
25 }
26
27 // If operator() returns true, particle is deleted ("lost")
28 bool operator()(const Particle&) {
29 return rand01() < _lossFraction;
30 }
31
32 CmpState compare(const ConstRandomFilter& other) const {
33 return cmp(_lossFraction, other._lossFraction);
34 }
35
36
37 protected:
38
39 double _lossFraction;
40
41 };
42
43
44
46 class ConstLossyFinalState : public LossyFinalState<ConstRandomFilter> {
47 public:
48
51
53 ConstLossyFinalState(const FinalState& fsp, double lossfraction)
55 {
56 setName("ConstLossyFinalState");
57 }
58
60 ConstLossyFinalState(double lossfraction, const Cut& c=Cuts::open())
62 {
63 setName("ConstLossyFinalState");
64 }
65
68
70 using Projection::operator =;
71
73
74 };
75
76
77}
78
79#endif
Randomly lose a constant fraction of particles.
Definition ConstLossyFinalState.hh:46
ConstLossyFinalState(double lossfraction, const Cut &c=Cuts::open())
Stand-alone constructor. Initialises the base FinalState projection.
Definition ConstLossyFinalState.hh:60
RIVET_DEFAULT_PROJ_CLONE(ConstLossyFinalState)
Clone on the heap.
ConstLossyFinalState(const FinalState &fsp, double lossfraction)
Constructor from a FinalState.
Definition ConstLossyFinalState.hh:53
Functor used to implement constant random lossiness.
Definition ConstLossyFinalState.hh:18
Project out all final-state particles in an event. Probably the most important projection in Rivet!
Definition FinalState.hh:12
Templated FS projection which can lose some of the supplied particles.
Definition LossyFinalState.hh:17
Particle representation, either from a HepMC::GenEvent or reconstructed.
Definition Particle.hh:45
void setName(const std::string &name)
Used by derived classes to set their name.
Definition Projection.hh:148
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10
double rand01()
Return a uniformly sampled random number between 0 and 1.
Cmp< T > cmp(const T &t1, const T &t2)
Global helper function for easy creation of Cmp objects.
Definition Cmp.hh:255