Rivet API documentation

Rivet 4.1.3
BeamThrust.hh
1// -*- C++ -*-
2#ifndef RIVET_BeamThrust_HH
3#define RIVET_BeamThrust_HH
4
5#include "Rivet/Projection.hh"
6#include "Rivet/Projections/FinalState.hh"
7#include "Rivet/Event.hh"
8
9namespace Rivet {
10
11
13 class BeamThrust : public Projection {
14 public:
15
18
19 BeamThrust(const FinalState& fsp) {
20 setName("BeamThrust");
21 declare(fsp, "FS");
22 }
23
26
28 using Projection::operator =;
29
30
31 protected:
32
34 void project(const Event& e) {
35 const vector<Particle> ps
36 = apply<FinalState>(e, "FS").particles();
37 calc(ps);
38 }
39
41 CmpState compare(const Projection& p) const {
42 return mkNamedPCmp(p, "FS");
43 }
44
45 public:
46
47 double beamthrust() const { return _beamthrust; }
48
52
54 void calc(const FinalState& fs);
55
57 void calc(const vector<Particle>& fsparticles);
58
60 void calc(const vector<FourMomentum>& fsmomenta);
61
63
64
65 protected:
66
68 double _beamthrust;
69
70
71 protected:
72
74 void _calcBeamThrust(const vector<FourMomentum>& fsmomenta);
75
76 };
77
78}
79
80#endif
void calc(const vector< Particle > &fsparticles)
Manually calculate the beamthrust, without engaging the caching system.
RIVET_DEFAULT_PROJ_CLONE(BeamThrust)
Clone on the heap.
CmpState compare(const Projection &p) const
Compare projections.
Definition BeamThrust.hh:41
void calc(const vector< FourMomentum > &fsmomenta)
Manually calculate the beamthrust, without engaging the caching system.
BeamThrust()
Constructor.
Definition BeamThrust.hh:17
void calc(const FinalState &fs)
Manually calculate the beamthrust, without engaging the caching system.
void project(const Event &e)
Perform the projection on the Event.
Definition BeamThrust.hh:34
Project out all final-state particles in an event. Probably the most important projection in Rivet!
Definition FinalState.hh:12
std::enable_if_t< std::is_base_of< Projection, PROJ >::value, const PROJ & > apply(const Event &evt, const Projection &proj) const
Apply the supplied projection on event evt.
Definition ProjectionApplier.hh:119
const PROJ & declare(const PROJ &proj, const std::string &name) const
Register a contained projection (user-facing version).
Definition ProjectionApplier.hh:184
Projection()
The default constructor.
friend class Event
Event is a friend.
Definition Projection.hh:33
void setName(const std::string &name)
Used by derived classes to set their name.
Definition Projection.hh:148
Cmp< Projection > mkNamedPCmp(const Projection &otherparent, const std::string &pname) const
double p(const ParticleBase &p)
Unbound function access to p.
Definition ParticleBaseUtils.hh:653
Definition MC_CENT_PPB_Projections.hh:10