Loading [MathJax]/extensions/tex2jax.js
rivet is hosted by Hepforge, IPPP Durham
Rivet 4.1.0
JetFinder.hh
1// -*- C++ -*-
2#ifndef RIVET_JetFinder_HH
3#define RIVET_JetFinder_HH
4
5#include "Rivet/Projection.hh"
6#include "Rivet/Projections/FinalState.hh"
7#include "Rivet/Projections/VisibleFinalState.hh"
8#include "Rivet/Particle.hh"
9#include "Rivet/Jet.hh"
10
11namespace Rivet {
12
13
15 enum class JetMuons { NONE, DECAY, ALL };
16
18 enum class JetInvisibles { NONE, DECAY, ALL };
19
20
22 struct JetScheme {
23 JetScheme(JetAlg a, double rparam,
24 JetMuons usemuons=JetMuons::ALL,
25 JetInvisibles useinvis=JetInvisibles::NONE)
26 : alg(a), R(rparam), muons(usemuons), invis(useinvis)
27 { }
28
30 JetScheme() : JetScheme(JetAlg::ANTIKT, 0.4) { }
31
33 JetAlg alg;
34 double R;
35 JetMuons muons = JetMuons::ALL;
36 JetInvisibles invis = JetInvisibles::NONE;
37 };
38
39
41 class JetFinder : public Projection {
42 public:
43
46 JetMuons usemuons = JetMuons::ALL,
47 JetInvisibles useinvis = JetInvisibles::NONE);
48
50 JetFinder() = default;
51
53 virtual unique_ptr<Projection> clone() const = 0;
54
56 virtual ~JetFinder() = default;
57
59 using Projection::operator =;
60
61
67
74 void useMuons(JetMuons usemuons = JetMuons::ALL) {
75 _useMuons = usemuons;
76 }
77
84 void useInvisibles(JetInvisibles useinvis = JetInvisibles::DECAY) {
85 _useInvisibles = useinvis;
86 }
87
89
90
93
96 virtual Jets jets(const Cut& c=Cuts::open()) const {
97 return select(_jets(), c);
98 }
99
102 virtual Jets jets(const JetSelector& selector) const {
103 return select(_jets(), selector);
104 }
105
106
109 Jets jets(const Cut& c, const JetSorter& sorter) const {
111 return sortBy(jets(c), sorter);
112 }
113
116 Jets jets(const JetSorter& sorter, const Cut& c=Cuts::open()) const {
118 return jets(c, sorter);
119 }
120
123 Jets jets(const JetSelector& selector, const JetSorter& sorter) const {
125 return sortBy(jets(selector), sorter);
126 }
127
130 Jets jets(const JetSorter& sorter, const JetSelector selector) const {
131 return jets(selector, sorter);
132 }
133
134
140 Jets jetsByPt(const Cut& c=Cuts::open()) const {
141 return jets(c, cmpMomByPt);
142 }
143
149 Jets jetsByPt(const JetSelector& selector) const {
150 return jets(selector, cmpMomByPt);
151 }
152
154
155
156 protected:
157
159 virtual Jets _jets() const = 0;
160
161
162 public:
163
165 size_t size() const { return jets().size(); }
167 size_t size(const Cut& c) const { return jets(c).size(); }
169 size_t size(const JetSelector& s) const { return jets(s).size(); }
170
172 bool empty() const { return size() == 0; }
174 bool empty(const Cut& c) const { return size(c) == 0; }
176 bool empty(const JetSelector& s) const { return size(s) == 0; }
177
179 virtual void reset() = 0;
180
181 typedef Jet entity_type;
182 typedef Jets collection_type;
183
185 collection_type entities() const { return jets(); }
186
187 // /// Do the calculation locally (no caching).
188 // virtual void calc(const Particles& constituents, const Particles& tagparticles=Particles()) = 0;
189
190
191 protected:
192
194 virtual void project(const Event& e) = 0;
195
197 virtual CmpState compare(const Projection& p) const = 0;
198
199
200 protected:
201
203 JetMuons _useMuons;
204
206 JetInvisibles _useInvisibles;
207
208
209 };
210
211
212}
213
214#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
Abstract base class for projections which can return a set of Jets.
Definition JetFinder.hh:41
Jets jetsByPt(const Cut &c=Cuts::open()) const
Definition JetFinder.hh:140
size_t size(const Cut &c) const
Count the jets after a Cut is applied.
Definition JetFinder.hh:167
virtual CmpState compare(const Projection &p) const =0
Compare projections.
virtual void project(const Event &e)=0
Perform the projection on the Event.
size_t size() const
Count the jets.
Definition JetFinder.hh:165
size_t size(const JetSelector &s) const
Count the jets after a selection functor is applied.
Definition JetFinder.hh:169
Jets jets(const JetSelector &selector, const JetSorter &sorter) const
Definition JetFinder.hh:123
Jets jets(const Cut &c, const JetSorter &sorter) const
Definition JetFinder.hh:109
virtual Jets jets(const Cut &c=Cuts::open()) const
Definition JetFinder.hh:96
JetFinder(const FinalState &fs, JetMuons usemuons=JetMuons::ALL, JetInvisibles useinvis=JetInvisibles::NONE)
Constructor.
virtual Jets jets(const JetSelector &selector) const
Definition JetFinder.hh:102
virtual unique_ptr< Projection > clone() const =0
Clone on the heap.
void useMuons(JetMuons usemuons=JetMuons::ALL)
Include (some) muons in jet construction.
Definition JetFinder.hh:74
bool empty(const JetSelector &s) const
Is this jet finder empty after a selection functor is applied?
Definition JetFinder.hh:176
Jets jets(const JetSorter &sorter, const JetSelector selector) const
Definition JetFinder.hh:130
Jets jetsByPt(const JetSelector &selector) const
Definition JetFinder.hh:149
Jets jets(const JetSorter &sorter, const Cut &c=Cuts::open()) const
Definition JetFinder.hh:116
virtual ~JetFinder()=default
Destructor.
virtual void reset()=0
Clear the projection.
bool empty(const Cut &c) const
Is this jet finder empty after a Cut is applied?
Definition JetFinder.hh:174
collection_type entities() const
Template-usable interface common to FinalState.
Definition JetFinder.hh:185
void useInvisibles(JetInvisibles useinvis=JetInvisibles::DECAY)
Include (some) invisible particles in jet construction.
Definition JetFinder.hh:84
bool empty() const
Is this jet finder empty?
Definition JetFinder.hh:172
JetFinder()=default
Default constructor.
Representation of a clustered jet of particles.
Definition Jet.hh:42
Specialised vector of Jet objects.
Definition Jet.hh:21
Base class for all Rivet projections.
Definition Projection.hh:29
Jets select(const Jets &jets, const Cut &c)
Filter a jet collection in-place to the subset that passes the supplied Cut.
Definition JetUtils.hh:157
function< bool(const Jet &)> JetSelector
std::function instantiation for functors taking a Jet and returning a bool
Definition JetUtils.hh:41
function< bool(const Jet &, const Jet &)> JetSorter
std::function instantiation for functors taking two Jets and returning a bool
Definition JetUtils.hh:43
MOMS sortBy(const MOMS &pbs, const CMP &cmp)
Sort a container of momenta by cmp and return by value for const inputs.
Definition Vector4.hh:1417
bool cmpMomByPt(const FourMomentum &a, const FourMomentum &b)
Comparison to give a sorting by decreasing pT.
Definition Vector4.hh:1322
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10
JetInvisibles
Enum for the treatment of invisible particles: whether to include all, some, or none in jet-finding.
Definition JetFinder.hh:18
JetMuons
Enum for the treatment of muons: whether to include all, some, or none in jet-finding.
Definition JetFinder.hh:15
Convenience container of params for simple jet definitions.
Definition JetFinder.hh:22
JetAlg alg
Params.
Definition JetFinder.hh:33
JetScheme()
Default constructor just for STL storage.
Definition JetFinder.hh:30