rivet is hosted by Hepforge, IPPP Durham
Rivet 4.1.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
27 public:
28
31
34 : FinalState(c)
35 {
36 setName("UnstableParticles");
37 }
38
41
43
45 using Projection::operator =;
46
47
48 protected:
49
51 virtual void project(const Event& e);
52
53 };
54
55
56 // Backward compatibility alias
58
59
60}
61
62
63#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:26
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:33
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10