rivet is hosted by Hepforge, IPPP Durham
Rivet 4.1.0
JetSmearingFunctions.hh
1// -*- C++ -*-
2#ifndef RIVET_JetSmearingFunctions_HH
3#define RIVET_JetSmearingFunctions_HH
4
5#include "Rivet/Jet.hh"
6#include "Rivet/Tools/MomentumSmearingFunctions.hh"
7#include "Rivet/Tools/ParticleSmearingFunctions.hh"
8#include "Rivet/Tools/Random.hh"
9
10namespace Rivet {
11
12
15
18
20 typedef function<Jet(const Jet&)> JetSmearFn;
21
23 typedef function<double(const Jet&)> JetEffFn;
24
25
26
28 inline double JET_EFF_ZERO(const Jet&) { return 0; }
30 inline double JET_EFF_0(const Jet&) { return 0; }
32 inline double JET_FN0(const Jet&) { return 0; }
33
35 inline double JET_EFF_ONE(const Jet&) { return 1; }
37 inline double JET_EFF_1(const Jet&) { return 1; }
39 inline double JET_EFF_PERFECT(const Jet&) { return 1; }
41 inline double JET_EFF_IDENTITY(const Jet&) { return 1; }
43 inline double JET_FN1(const Jet&) { return 1; }
44
47 JET_EFF_CONST(double eff) : _eff(eff) {}
48 double operator () (const Jet& ) const { return _eff; }
49 double _eff;
50 };
51
52
56 inline double JET_BTAG_PERFECT(const Jet& j) { return j.bTagged() ? 1 : 0; }
58 inline double JET_BTAG_IDENTITY(const Jet& j) { return JET_BTAG_PERFECT(j); }
59
63 inline double JET_CTAG_PERFECT(const Jet& j) { return j.cTagged() ? 1 : 0; }
65 inline double JET_CTAG_IDENTITY(const Jet& j) { return JET_CTAG_PERFECT(j); }
66
70 inline double JET_TAUTAG_PERFECT(const Jet& j) { return j.tauTagged() ? 1 : 0; }
72 inline double JET_TAUTAG_IDENTITY(const Jet& j) { return JET_TAUTAG_PERFECT(j); }
73
74
79 JET_BTAG_EFFS(double eff_b, double eff_light=0) : _eff_b(eff_b), _eff_c(-1), _eff_t(-1), _eff_l(eff_light) { }
80 JET_BTAG_EFFS(double eff_b, double eff_c, double eff_light) : _eff_b(eff_b), _eff_c(eff_c), _eff_t(-1), _eff_l(eff_light) { }
81 JET_BTAG_EFFS(double eff_b, double eff_c, double eff_tau, double eff_light) : _eff_b(eff_b), _eff_c(eff_c), _eff_t(eff_tau), _eff_l(eff_light) { }
82 inline double operator () (const Jet& j) {
83 if (j.bTagged()) return _eff_b;
84 if (_eff_c >= 0 && j.cTagged()) return _eff_c;
85 if (_eff_t >= 0 && j.tauTagged()) return _eff_t;
86 return _eff_l;
87 }
88 double _eff_b, _eff_c, _eff_t, _eff_l;
89 };
90
91
95 inline Jet JET_SMEAR_IDENTITY(const Jet& j) { return j; }
97 inline Jet JET_SMEAR_PERFECT(const Jet& j) { return j; }
98
99
106 JetEffSmearFn(const JetSmearFn& s, const JetEffFn& e)
107 : sfn(s), efn(e) { }
108
109 JetEffSmearFn(const JetEffFn& e, const JetSmearFn& s)
110 : sfn(s), efn(e) { }
111
112 JetEffSmearFn(const JetSmearFn& s)
113 : sfn(s), efn(JET_EFF_ONE) { }
114
115 JetEffSmearFn(const JetEffFn& e)
116 : sfn(JET_SMEAR_IDENTITY), efn(e) { }
117
118 JetEffSmearFn(double eff)
119 : JetEffSmearFn(JET_EFF_CONST(eff)) { }
120
122 pair<Jet,double> operator() (const Jet& j) const {
123 return make_pair(sfn(j), efn(j));
124 }
125
127 CmpState cmp(const JetEffSmearFn& other) const {
128 // cout << "Eff hashes = " << get_address(efn) << "," << get_address(other.efn) << "; "
129 // << "smear hashes = " << get_address(sfn) << "," << get_address(other.sfn) << '\n';
130 if (get_address(sfn) == 0 || get_address(other.sfn) == 0) return CmpState::NEQ;
131 if (get_address(efn) == 0 || get_address(other.efn) == 0) return CmpState::NEQ;
132 return Rivet::cmp(get_address(sfn), get_address(other.sfn)) || Rivet::cmp(get_address(efn), get_address(other.efn));
133 }
134
136 operator JetSmearFn () { return sfn; }
139 // operator JetEffFn () { return efn; }
140
141 // Stored functions/functors
143 JetEffFn efn;
144 };
145
146
148 template <typename FN>
149 inline bool efffilt(const Jet& j, FN& feff) {
150 return rand01() < feff(j);
151 }
152
155 template <typename FN>
156 JetEffFilter(const FN& feff) : _feff(feff) {}
157 JetEffFilter(double eff) : JetEffFilter( [&](const Jet&){return eff;} ) {}
158 bool operator () (const Jet& j) const { return efffilt(j, _feff); }
159 private:
160 const JetEffFn _feff;
161 };
163
165
167
168}
169
170#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
double JET_CTAG_PERFECT(const Jet &j)
Return 1 if the given Jet contains a c, otherwise 0.
Definition JetSmearingFunctions.hh:63
double JET_EFF_ONE(const Jet &)
Take a jet and return a constant 1.
Definition JetSmearingFunctions.hh:35
double JET_EFF_0(const Jet &)
Alias for JET_EFF_ZERO.
Definition JetSmearingFunctions.hh:30
double JET_EFF_1(const Jet &)
Alias for JET_EFF_ONE.
Definition JetSmearingFunctions.hh:37
double JET_TAUTAG_IDENTITY(const Jet &j)
Alias for JET_TAUTAG_PERFECT.
Definition JetSmearingFunctions.hh:72
double JET_TAUTAG_PERFECT(const Jet &j)
Return 1 if the given Jet contains a c, otherwise 0.
Definition JetSmearingFunctions.hh:70
double JET_BTAG_PERFECT(const Jet &j)
Return 1 if the given Jet contains a b, otherwise 0.
Definition JetSmearingFunctions.hh:56
Jet JET_SMEAR_PERFECT(const Jet &j)
Alias for JET_SMEAR_IDENTITY.
Definition JetSmearingFunctions.hh:97
double JET_CTAG_IDENTITY(const Jet &j)
Alias for JET_CTAG_PERFECT.
Definition JetSmearingFunctions.hh:65
double JET_BTAG_IDENTITY(const Jet &j)
Alias for JET_BTAG_PERFECT.
Definition JetSmearingFunctions.hh:58
double JET_FN1(const Jet &)
Alias for JET_EFF_ONE.
Definition JetSmearingFunctions.hh:43
Jet JET_SMEAR_IDENTITY(const Jet &j)
Definition JetSmearingFunctions.hh:95
function< Jet(const Jet &)> JetSmearFn
Typedef for Jet smearing functions/functors.
Definition JetSmearingFunctions.hh:20
double JET_FN0(const Jet &)
Alias for JET_EFF_ZERO.
Definition JetSmearingFunctions.hh:32
double JET_EFF_IDENTITY(const Jet &)
Alias for JET_EFF_ONE.
Definition JetSmearingFunctions.hh:41
bool efffilt(const Jet &j, FN &feff)
Return true if Jet j is chosen to survive a random efficiency selection.
Definition JetSmearingFunctions.hh:149
double JET_EFF_ZERO(const Jet &)
Take a jet and return a constant 0.
Definition JetSmearingFunctions.hh:28
function< double(const Jet &)> JetEffFn
Typedef for Jet efficiency functions/functors.
Definition JetSmearingFunctions.hh:23
double JET_EFF_PERFECT(const Jet &)
Alias for JET_EFF_ONE.
Definition JetSmearingFunctions.hh:39
Definition MC_CENT_PPB_Projections.hh:10
double rand01()
Return a uniformly sampled random number between 0 and 1.
Cmp< T > cmp(const T &t1, const T &t2)
Global helper function for easy creation of Cmp objects.
Definition Cmp.hh:255
uintptr_t get_address(std::function< T(U...)> f)
Get a function pointer / hash integer from an std::function.
Definition RivetSTL.hh:217
b-tagging efficiency functor, for more readable b-tag effs and mistag rates
Definition JetSmearingFunctions.hh:78
Take a Jet and return a constant efficiency.
Definition JetSmearingFunctions.hh:46
A functor to return true if Jet j survives a random efficiency selection.
Definition JetSmearingFunctions.hh:154
Functor for simultaneous efficiency-filtering and smearing of Jets.
Definition JetSmearingFunctions.hh:105
CmpState cmp(const JetEffSmearFn &other) const
Compare to another, for use in the projection system.
Definition JetSmearingFunctions.hh:127
JetSmearFn sfn
Definition JetSmearingFunctions.hh:142
pair< Jet, double > operator()(const Jet &j) const
Smear and calculate an efficiency for the given jet.
Definition JetSmearingFunctions.hh:122