rivet is hosted by Hepforge, IPPP Durham
Rivet 3.1.6
CentralEtHCM.hh
1// -*- C++ -*-
2#ifndef RIVET_CentralEtHCM_HH
3#define RIVET_CentralEtHCM_HH
4
5#include "Rivet/Particle.hh"
6#include "Rivet/Event.hh"
7#include "Rivet/Projections/DISFinalState.hh"
8
9namespace Rivet {
10
11
16 class CentralEtHCM : public Projection {
17 public:
18
22 {
23 setName("CentralEtHCM");
24 declare(fs, "FS");
25 }
26
29
30
31 protected:
32
34 void project(const Event& e);
35
37 CmpState compare(const Projection& p) const {
38 return mkNamedPCmp(p, "FS");
39 }
40
41
42 public:
43
45 double sumEt() const { return _sumet; }
46
47
48 private:
49
51 double _sumet;
52
53 };
54
55}
56
57
58#endif
Summed of central particles in HCM system.
Definition: CentralEtHCM.hh:16
void project(const Event &e)
Apply the projection on to the Event.
DEFAULT_RIVET_PROJ_CLONE(CentralEtHCM)
Clone on the heap.
CentralEtHCM(const DISFinalState &fs)
Definition: CentralEtHCM.hh:21
double sumEt() const
The sum of the Et in the central rapidity bin.
Definition: CentralEtHCM.hh:45
CmpState compare(const Projection &p) const
Compare with other projections.
Definition: CentralEtHCM.hh:37
Final state particles boosted to the hadronic center of mass system.
Definition: DISFinalState.hh:14
Representation of a HepMC event, and enabler of Projection caching.
Definition: Event.hh:22
const PROJ & declare(const PROJ &proj, const std::string &name)
Register a contained projection (user-facing version)
Definition: ProjectionApplier.hh:170
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:142
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.hh:10