rivet is hosted by Hepforge, IPPP Durham
Rivet 3.1.6
MC_Cent_pPb.hh
1// -*- C++ -*-
2#ifndef RIVET_MC_Cent_pPb_HH
3#define RIVET_MC_Cent_pPb_HH
4
5#include "Rivet/Projections/FinalState.hh"
6#include "Rivet/Projections/ChargedFinalState.hh"
7#include "Rivet/Projections/SingleValueProjection.hh"
8#include "Rivet/Projections/TriggerProjection.hh"
9
10namespace Rivet {
11
15
16public:
17
20 declare(FinalState(Cuts::eta < -3.2 && Cuts::eta > -4.9 && Cuts::pT > 0.1*GeV),
21 "FSSumETFwdCentrality");
22 }
23
26
27protected:
28
30 void project(const Event& e) {
31 clear();
32 const FinalState & fsfwd =
33 apply<FinalState>(e, "FSSumETFwdCentrality");
34 double estimate = 0.0;
35 for ( const Particle & p : fsfwd.particles() ) {
36 estimate += p.Et();
37 }
38 set(estimate);
39 }
40
42 CmpState compare(const Projection& p) const {
43 return mkNamedPCmp(p, "FSSumETFwdCentrality");
44 }
45
46};
47
51
52public:
53
56 declare(FinalState(Cuts::eta < -3.2 && Cuts::eta > -4.9 && Cuts::pT > 0.1*GeV),
57 "FSSumETFwdCentrality");
58 declare(ChargedFinalState(Cuts::eta > 2.09 && Cuts::eta < 3.84 &&
59 Cuts::pT > 0.1*GeV), "MBB");
60 declare(ChargedFinalState(Cuts::eta < -2.09 && Cuts::eta > -3.84 &&
61 Cuts::pT > 0.1*GeV), "MBF");
62 }
63
66
67protected:
68
70 void project(const Event& event) {
71 pass();
72 if ( applyProjection<FinalState>(event,"MBF").particles().empty() ||
73 applyProjection<FinalState>(event,"MBB").particles().empty() )
74 fail();
75 }
76
78 CmpState compare(const Projection& p) const {
79 return mkNamedPCmp(p, "MBF") || mkNamedPCmp(p, "MBB");
80 }
81
82};
83
84
85}
86
87#endif
Project only charged final state particles.
Definition: ChargedFinalState.hh:11
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
Definition: MC_Cent_pPb.hh:14
void project(const Event &e)
Perform the projection on the Event.
Definition: MC_Cent_pPb.hh:30
CmpState compare(const Projection &p) const
Compare projections.
Definition: MC_Cent_pPb.hh:42
MC_SumETFwdPbCentrality()
Constructor.
Definition: MC_Cent_pPb.hh:19
DEFAULT_RIVET_PROJ_CLONE(MC_SumETFwdPbCentrality)
Clone on the heap.
Definition: MC_Cent_pPb.hh:50
void project(const Event &event)
Perform the projection on the Event.
Definition: MC_Cent_pPb.hh:70
DEFAULT_RIVET_PROJ_CLONE(MC_pPbMinBiasTrigger)
Clone on the heap.
CmpState compare(const Projection &p) const
Compare projections.
Definition: MC_Cent_pPb.hh:78
MC_pPbMinBiasTrigger()
Constructor.
Definition: MC_Cent_pPb.hh:55
virtual const Particles & particles() const
Get the particles in no particular order, with no cuts.
Definition: ParticleFinder.hh:49
Particle representation, either from a HepMC::GenEvent or reconstructed.
Definition: Particle.hh:53
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
Cmp< Projection > mkNamedPCmp(const Projection &otherparent, const std::string &pname) const
Base class for projections returning a single floating point value.
Definition: SingleValueProjection.hh:17
void set(double v)
Definition: SingleValueProjection.hh:51
void clear()
Unset the value.
Definition: SingleValueProjection.hh:54
Base class for projections returning a bool corresponding to a trigger.
Definition: TriggerProjection.hh:19
void fail()
Indicate that the event has failed the trigger.
Definition: TriggerProjection.hh:55
void pass()
Indicate that the event has passed the trigger.
Definition: TriggerProjection.hh:45
double p(const ParticleBase &p)
Unbound function access to p.
Definition: ParticleBaseUtils.hh:653
Definition: MC_Cent_pPb.hh:10