rivet is hosted by Hepforge, IPPP Durham
Rivet 4.0.0
VisibleFinalState.hh
1// -*- C++ -*-
2#ifndef RIVET_VisibleFinalState_HH
3#define RIVET_VisibleFinalState_HH
4
5#include "Rivet/Tools/Logging.hh"
6#include "Rivet/Config/RivetCommon.hh"
7#include "Rivet/Particle.hh"
8#include "Rivet/Event.hh"
9#include "Rivet/Projection.hh"
10#include "Rivet/Projections/FinalState.hh"
11
12namespace Rivet {
13
14
17 public:
18
21
24 {
25 setName("VisibleFinalState");
26 declare(FinalState(c), "FS");
27 }
28
31 {
32 setName("VisibleFinalState");
33 declare(fsp, "FS");
34 }
35
38
40
42 using Projection::operator =;
43
44
46 void project(const Event& e);
47
49 CmpState compare(const Projection& p) const;
50
51 };
52
53
54}
55
56#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
const PROJ & declare(const PROJ &proj, const std::string &name) const
Register a contained projection (user-facing version)
Definition ProjectionApplier.hh:175
Base class for all Rivet projections.
Definition Projection.hh:29
void setName(const std::string &name)
Used by derived classes to set their name.
Definition Projection.hh:148
Final state modifier excluding particles which are not experimentally visible.
Definition VisibleFinalState.hh:16
VisibleFinalState(const Cut &c=Cuts::open())
Constructor with min and max pseudorapidity and min (in GeV).
Definition VisibleFinalState.hh:23
RIVET_DEFAULT_PROJ_CLONE(VisibleFinalState)
Clone on the heap.
void project(const Event &e)
Apply the projection on the supplied event.
VisibleFinalState(const FinalState &fsp)
Constructor with specific FinalState.
Definition VisibleFinalState.hh:30
CmpState compare(const Projection &p) const
Compare projections.
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10