rivet is hosted by Hepforge, IPPP Durham
Rivet 4.1.0
JetUtils.hh
1#ifndef RIVET_JETUTILS_HH
2#define RIVET_JETUTILS_HH
3
4#include "Rivet/Jet.hh"
5#include "Rivet/Tools/ParticleBaseUtils.hh"
6
7namespace Rivet {
8
9
12
15
16 inline PseudoJets mkPseudoJets(const Particles& ps) {
17 PseudoJets rtn; rtn.reserve(ps.size());
18 for (const Particle& p : ps) rtn.push_back(p.pseudojet());
19 return rtn;
20 }
21
22 inline PseudoJets mkPseudoJets(const Jets& js) {
23 PseudoJets rtn; rtn.reserve(js.size());
24 for (const Jet& j : js) rtn.push_back(j.pseudojet());
25 return rtn;
26 }
27
28 inline Jets mkJets(const PseudoJets& pjs) {
29 Jets rtn; rtn.reserve(pjs.size());
30 for (const PseudoJet& pj : pjs) rtn.push_back(pj);
31 return rtn;
32 }
33
35
36
39
41 using JetSelector = function<bool(const Jet&)>;
43 using JetSorter = function<bool(const Jet&, const Jet&)>;
44
45
48 virtual bool operator()(const Jet& p) const = 0;
49 virtual ~BoolJetFunctor() {}
50 };
51
52
54 struct BoolJetAND : public BoolJetFunctor {
55 BoolJetAND(const std::vector<JetSelector>& sels) : selectors(sels) {}
56 BoolJetAND(const JetSelector& a, const JetSelector& b) : selectors({a,b}) {}
57 BoolJetAND(const JetSelector& a, const JetSelector& b, const JetSelector& c) : selectors({a,b,c}) {}
58 bool operator()(const Jet& j) const {
59 for (const JetSelector& sel : selectors) if (!sel(j)) return false;
60 return true;
61 }
62 std::vector<JetSelector> selectors;
63 };
65 inline BoolJetAND operator && (const JetSelector& a, const JetSelector& b) {
66 return BoolJetAND(a, b);
67 }
68
69
71 struct BoolJetOR : public BoolJetFunctor {
72 BoolJetOR(const std::vector<JetSelector>& sels) : selectors(sels) {}
73 BoolJetOR(const JetSelector& a, const JetSelector& b) : selectors({a,b}) {}
74 BoolJetOR(const JetSelector& a, const JetSelector& b, const JetSelector& c) : selectors({a,b,c}) {}
75 bool operator()(const Jet& j) const {
76 for (const JetSelector& sel : selectors) if (sel(j)) return true;
77 return false;
78 }
79 std::vector<JetSelector> selectors;
80 };
82 inline BoolJetOR operator || (const JetSelector& a, const JetSelector& b) {
83 return BoolJetOR(a, b);
84 }
85
86
88 struct BoolJetNOT : public BoolJetFunctor {
89 BoolJetNOT(const JetSelector& sel) : selector(sel) {}
90 bool operator()(const Jet& j) const { return !selector(j); }
91 JetSelector selector;
92 };
95 return BoolJetNOT(a);
96 }
97
98
99
102 HasBTag(const Cut& c=Cuts::open(), double dR=-1) : cut(c), deltaR(dR) {}
103 // HasBTag(const std::function<bool(const Jet& j)>& f) : selector(f) {}
104 bool operator() (const Jet& j) const { return j.bTagged(cut, deltaR); }
105 // const std::function<bool(const Jet& j)> selector;
106 const Cut cut;
107 const double deltaR;
108 };
109 using hasBTag = HasBTag;
110
113 HasCTag(const Cut& c=Cuts::open(), double dR=-1) : cut(c), deltaR(dR) {}
114 // HasCTag(const std::function<bool(const Jet& j)>& f) : selector(f) {}
115 bool operator() (const Jet& j) const { return j.cTagged(cut, deltaR); }
116 // const std::function<bool(const Jet& j)> selector;
117 const Cut cut;
118 const double deltaR;
119 };
120 using hasCTag = HasCTag;
121
124 HasTauTag(const Cut& c=Cuts::open(), double dR=-1) : cut(c), deltaR(dR) {}
125 // HasTauTag(const std::function<bool(const Jet& j)>& f) : selector(f) {}
126 bool operator() (const Jet& j) const { return j.tauTagged(cut, deltaR); }
127 // const std::function<bool(const Jet& j)> selector;
128 const Cut cut;
129 const double deltaR;
130 };
131 using hasTauTag = HasTauTag;
132
135 HasNoTag(const Cut& c=Cuts::open(), double dR=-1, bool quarktagsonly=false) : cut(c), deltaR(dR), qtagsonly(quarktagsonly) {}
136 HasNoTag(const Cut& c=Cuts::open(), bool quarktagsonly=false) : HasNoTag(c, -1, quarktagsonly) {}
137 // HasNoTag(const std::function<bool(const Jet& j)>& f) : selector(f) {}
138 bool operator() (const Jet& j) const { return !j.bTagged(cut, deltaR) && !j.cTagged(cut, deltaR) && (qtagsonly || !j.tauTagged(cut, deltaR)); }
139 // const std::function<bool(const Jet& j)> selector;
140 const Cut cut;
141 const double deltaR;
142 bool qtagsonly;
143 };
144 using hasNoTag = HasNoTag;
145
147
148
151
153 Jets& iselect(Jets& jets, const Cut& c);
154
155
157 inline Jets select(const Jets& jets, const Cut& c) {
158 Jets rtn = jets;
159 return iselect(rtn, c);
160 }
161
162
164 inline Jets select(const Jets& jets, const Cut& c, Jets& out) {
165 out = select(jets, c);
166 return out;
167 }
168
169
170
172 Jets& idiscard(Jets& jets, const Cut& c);
173
174
176 inline Jets discard(const Jets& jets, const Cut& c) {
177 Jets rtn = jets;
178 return idiscard(rtn, c);
179 }
180
181
183 inline Jets discard(const Jets& jets, const Cut& c, Jets& out) {
184 out = discard(jets, c);
185 return out;
186 }
187
189
190
193
202 Jet& itrimJetsFrac(Jet &jet, const double frac);
203
211 template <
212 typename CONTAINER,
213 typename = std::enable_if_t<
214 is_citerable_v<CONTAINER>,
215 Jet
216 >
217 >
218 CONTAINER& itrimJetsFrac(CONTAINER &jets, const double frac, const JetSorter &sortFunc=cmpMomByPt){
219 for ( Jet &jet : jets ) itrimJetsFrac(jet, frac);
220 isortBy(jets, sortFunc);
221 return jets;
222 }
223
224 template <typename T, typename U>
225 std::map<T, U>& itrimJetsFrac(std::map<T, U> &jetMap, const double frac, const JetSorter &sortFunc=cmpMomByPt){
226 for ( auto &item : jetMap ) itrimJetsFrac(item.second, frac, sortFunc);
227 return jetMap;
228 }
229
238 inline Jet trimJetsFrac(const Jet &jet, double frac){
239 Jet rtn = jet;
240 return itrimJetsFrac(rtn, frac);
241 }
242
250 template <
251 typename... Args, typename CONTAINER,
252 typename = std::enable_if_t<
253 is_citerable_v<CONTAINER>,
254 Jet
255 >
256 >
257 CONTAINER trimJetsFrac(const CONTAINER &jets, Args&&... args){
258 CONTAINER rtn = jets;
259 return itrimJetsFrac(rtn, std::forward<Args>(args)...);
260 }
261
262 template <typename T, typename U, typename... Args>
263 std::map<T, U> trimJetsFrac(const std::map<T, U> &jetMap, Args&&... args){
264 std::map<T, U> rtn = jetMap;
265 return itrimJetsFrac(rtn, std::forward<Args>(args)...);
266 }
267
269
272
276 PseudoJet& ifilterPseudoJets(PseudoJet &pj, const fastjet::Filter &filter);
277
281 template <
282 typename CONTAINER,
283 typename = std::enable_if_t<
284 is_citerable_v<CONTAINER>,
285 PseudoJet
286 >
287 >
288 CONTAINER& ifilterPseudoJets(CONTAINER &pjs, const fastjet::Filter &filter, const JetSorter &sortFunc=cmpMomByPt){
289 for ( PseudoJet& pj : pjs ) ifilterPseudoJets(pj, filter);
290 isortBy(pjs, sortFunc);
291 return pjs;
292 }
293
297 template <typename T, typename U, typename... Args>
298 std::map<T, U>& ifilterPseudoJets(std::map<T, U> &pjMap, Args&&... args){
299 for ( auto &item : pjMap ) ifilterPseudoJets(item.second, std::forward<Args>(args)...);
300 return pjMap;
301 }
302
304 inline PseudoJet filterPseudoJets(const PseudoJet &pj, const fastjet::Filter &filter){
305 PseudoJet rtn = pj;
306 return ifilterPseudoJets(rtn, filter);
307 }
308
312 template <
313 typename... Args, typename CONTAINER,
314 typename = std::enable_if_t<
315 is_citerable_v<CONTAINER>,
316 PseudoJet
317 >
318 >
319 CONTAINER filterPseudoJets(const CONTAINER &pjs, Args&&... args){
320 CONTAINER rtn = pjs;
321 return ifilterPseudoJets(rtn, std::forward<Args>(args)...);
322 }
323
327 template <typename T, typename U, typename... Args>
328 std::map<T, U> filterPseudoJets(const std::map<T, U> &pjMap, Args&&... args){
329 std::map<T, U> rtn = pjMap;
330 return ifilterPseudoJets(rtn, std::forward<Args>(args)...);
331 }
333
334
338 namespace Kin {
339
341 inline double pT(const Jet& j) {
342 return j.pT();
343 }
344
345 inline double sumPt(const Jets& js) {
346 return sum(js, Kin::pT, 0.0);
347 }
348
349 inline FourMomentum sumP4(const Jets& js) {
350 return sum(js, Kin::p4, FourMomentum());
351 }
352
353 inline Vector3 sumP3(const Jets& js) {
354 return sum(js, Kin::p3, Vector3());
355 }
356
359
360 }
362
363
364 // Import Kin namespace into Rivet
365 using namespace Kin;
366
367
369
370}
371
372#endif
Representation of a clustered jet of particles.
Definition Jet.hh:42
bool cTagged(const Cut &c=Cuts::open(), double dRmax=-1) const
Does this jet have at least one c-tag? (with optional Cut and dR restriction)
Definition Jet.hh:170
bool tauTagged(const Cut &c=Cuts::open(), double dRmax=-1) const
Does this jet have at least one tau-tag (with optional Cut and dR restriction)
Definition Jet.hh:193
bool bTagged(const Cut &c=Cuts::open(), double dRmax=-1) const
Does this jet have at least one b-tag? (with optional Cut and dR restriction)
Definition Jet.hh:147
Specialised vector of Jet objects.
Definition Jet.hh:21
Jets & idiscard(Jets &jets, const Cut &c)
Filter a jet collection in-place to the subset that fails the supplied Cut.
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
Jets & iselect(Jets &jets, const Cut &c)
Filter a jet collection in-place to the subset that passes the supplied Cut.
Jets discard(const Jets &jets, const Cut &c)
Filter a jet collection in-place to the subset that fails the supplied Cut.
Definition JetUtils.hh:176
PseudoJet & ifilterPseudoJets(PseudoJet &pj, const fastjet::Filter &filter)
Apply given FastJet::Filter.
PseudoJet filterPseudoJets(const PseudoJet &pj, const fastjet::Filter &filter)
Apply given FastJet::Filter.
Definition JetUtils.hh:304
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
Jet & itrimJetsFrac(Jet &jet, const double frac)
Trim subjets with insufficient pT fraction.
Jet trimJetsFrac(const Jet &jet, double frac)
Trim subjets with insufficient pT fraction.
Definition JetUtils.hh:238
MOMS & isortBy(MOMS &pbs, const CMP &cmp)
Sort a container of momenta by cmp and return by reference for non-const inputs.
Definition Vector4.hh:1411
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
Cut operator!(const Cut &cptr)
Logical NOT operation on a cut.
Cut operator&&(const Cut &aptr, const Cut &bptr)
T sum(const DressedLeptons &c, FN &&fn, const T &start=T())
Generic sum function, adding fn(x) for all x in container c, starting with start.
Definition DressedLepton.hh:60
std::vector< PseudoJet > PseudoJets
Definition RivetFastJet.hh:30
Cut operator||(const Cut &aptr, const Cut &bptr)
Functor for and-combination of selector logic.
Definition JetUtils.hh:54
Base type for Jet -> bool functors.
Definition JetUtils.hh:47
Functor for inverting selector logic.
Definition JetUtils.hh:88
Functor for or-combination of selector logic.
Definition JetUtils.hh:71
B-tagging functor, with a tag selection cut as the stored state.
Definition JetUtils.hh:101
C-tagging functor, with a tag selection cut as the stored state.
Definition JetUtils.hh:112
Anti-B/C-tagging functor, with a tag selection cut as the stored state.
Definition JetUtils.hh:134
Tau-tagging functor, with a tag selection cut as the stored state.
Definition JetUtils.hh:123