rivet is hosted by Hepforge, IPPP Durham
Rivet 4.0.0
UnstableParticles.hh
1// -*- C++ -*-
2#ifndef RIVET_UnstableParticles_HH
3#define RIVET_UnstableParticles_HH
4
5#include "Rivet/Projections/FinalState.hh"
6
7namespace Rivet {
8
9
26 public:
27
30
33 : FinalState(c)
34 {
35 setName("UnstableParticles");
36 }
37
40
42
44 using Projection::operator =;
45
46
47 protected:
48
50 virtual void project(const Event& e);
51
52 };
53
54
55 // Backward compatibility alias
57
58
59}
60
61
62#endif
Representation of a HepMC event, and enabler of Projection caching.
Definition Event.hh:22
Project out all final-state particles in an event. Probably the most important projection in Rivet!
Definition FinalState.hh:12
void setName(const std::string &name)
Used by derived classes to set their name.
Definition Projection.hh:148
Project out all physical-but-decayed particles in an event.
Definition UnstableParticles.hh:25
RIVET_DEFAULT_PROJ_CLONE(UnstableParticles)
Clone on the heap.
virtual void project(const Event &e)
Apply the projection to the event.
UnstableParticles(const Cut &c=Cuts::open())
Cut-based / default constructor.
Definition UnstableParticles.hh:32
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10