rivet is hosted by Hepforge, IPPP Durham
Rivet 4.1.0
MomentumSmearingFunctions.hh
1// -*- C++ -*-
2#ifndef RIVET_MomentumSmearingFunctions_HH
3#define RIVET_MomentumSmearingFunctions_HH
4
5#include "Rivet/Math/Vector4.hh"
6#include "Rivet/Tools/Random.hh"
7
8namespace Rivet {
9
10
13
16
23 P4SmearParams(const FourMomentum& p4nom, double pres=0.0, double eres=0.0, double phires=0.0, double etares=0.0)
24 : p4Nominal(p4nom), pResolution(pres), eResolution(pres),
25 phiResolution(phires), etaResolution(etares) {}
26 FourMomentum p4Nominal;
27 double pResolution{0.0}, eResolution{0.0}, phiResolution{0.0}, etaResolution{0.0};
28 };
29
31 typedef std::function<FourMomentum(const FourMomentum&)> P4SmearFn;
32
34 typedef std::function<double(const FourMomentum&)> P4EffFn;
35
36
38 inline double P4_EFF_ZERO(const FourMomentum& ) { return 0; }
39
41 inline double P4_EFF_ONE(const FourMomentum& ) { return 1; }
42
44 struct P4_EFF_CONST {
45 P4_EFF_CONST(double x) : _x(x) {}
46 double operator () (const FourMomentum& ) const { return _x; }
47 double _x;
48 };
49
50
52 inline FourMomentum P4_SMEAR_IDENTITY(const FourMomentum& p) { return p; }
54 inline FourMomentum P4_SMEAR_PERFECT(const FourMomentum& p) { return p; }
55
58 inline FourMomentum P4_SMEAR_E_GAUSS(const FourMomentum& p, double resolution) {
59 const double mass = p.mass2() > 0 ? p.mass() : 0; //< numerical carefulness...
60 const double smeared_E = max(randnorm(p.E(), resolution), mass); //< can't let the energy go below the mass!
61 return FourMomentum::mkEtaPhiME(p.eta(), p.phi(), mass, smeared_E);
62 }
63
65 inline FourMomentum P4_SMEAR_PT_GAUSS(const FourMomentum& p, double resolution) {
66 const double smeared_pt = max(randnorm(p.pT(), resolution), 0.);
67 const double mass = p.mass2() > 0 ? p.mass() : 0; //< numerical carefulness...
68 return FourMomentum::mkEtaPhiMPt(p.eta(), p.phi(), mass, smeared_pt);
69 }
70
72 inline FourMomentum P4_SMEAR_MASS_GAUSS(const FourMomentum& p, double resolution) {
73 const double smeared_mass = max(randnorm(p.mass(), resolution), 0.);
74 return FourMomentum::mkEtaPhiMPt(p.eta(), p.phi(), smeared_mass, p.pT());
75 }
76
78
79
80
83
85 inline double P3_EFF_ZERO(const Vector3&) { return 0; }
86
88 inline double P3_EFF_ONE(const Vector3&) { return 1; }
89
91 struct P3_EFF_CONST {
92 P3_EFF_CONST(double x) : _x(x) {}
93 double operator () (const Vector3& ) const { return _x; }
94 double _x;
95 };
96
97
99 inline Vector3 P3_SMEAR_IDENTITY(const Vector3& p) { return p; }
101 inline Vector3 P3_SMEAR_PERFECT(const Vector3& p) { return p; }
102
104 inline Vector3 P3_SMEAR_LEN_GAUSS(const Vector3& p, double resolution) {
105 const double smeared_mod = max(randnorm(p.mod(), resolution), 0.); //< can't let the energy go below the mass!
106 return smeared_mod * p.unit();
107 }
108
110
111
112
115
122 METSmearParams(const Vector3& vmetnom, double pres=0.0, double phires=0.0)
123 : vmetNominal(vmetnom), pResolution(pres), phiResolution(phires) {}
124 Vector3 vmetNominal;
125 double pResolution{0.0}, phiResolution{0.0};
126 };
127
134 typedef function<METSmearParams(const Vector3&, double)> METSmearParamsFn;
135
139 typedef function<Vector3(const Vector3&, double)> METSmearFn;
140
141
157 const Vector3& vmet = msps.vmetNominal;
158 // MET magnitude smear
159 // const double metsmear = max(randnorm(vmet.mod(), resolution), 0.); //< make peak at 0
160 const double metsmear = fabs(randnorm(vmet.mod(), msps.pResolution)); //< "reflect" at 0
161 // MET phi-angle smearing matrix
162 const Matrix3 phismear = Matrix3::mkZRotation(randnorm(0.0, msps.phiResolution));
163 // Apply smearings
164 return metsmear * phismear * vmet.unit();
165 }
166
167
173 return METSmearParams(met, 0.0, 0.0);
174 }
175
177 inline Vector3 MET_SMEAR_IDENTITY(const Vector3& met, double) {
178 return met;
179 }
180
182
184
185}
186
187#endif
Specialized version of the FourVector with momentum/energy functionality.
Definition Vector4.hh:316
static FourMomentum mkEtaPhiME(double eta, double phi, double mass, double E)
Make a vector from (eta,phi,energy) coordinates and the mass.
Definition Vector4.hh:759
static FourMomentum mkEtaPhiMPt(double eta, double phi, double mass, double pt)
Make a vector from (eta,phi,pT) coordinates and the mass.
Definition Vector4.hh:764
Specialisation of MatrixN to aid 3 dimensional rotations.
Definition Matrix3.hh:13
Three-dimensional specialisation of Vector.
Definition Vector3.hh:40
Vector3 unit() const
Synonym for unitVec.
Definition Vector3.hh:124
double mod() const
Calculate the modulus of a vector. .
Definition VectorN.hh:95
double mass(const FourMomentum &a, const FourMomentum &b)
Calculate mass of two 4-vectors.
Definition Vector4.hh:1463
Vector3 MET_SMEAR_IDENTITY(const Vector3 &met, double)
Identity MET smearing just returns the input.
Definition MomentumSmearingFunctions.hh:177
METSmearParams MET_SMEARPARAMS_IDENTITY(const Vector3 &met, double)
Identity resolution is 0 (perfect delta function, no offset)
Definition MomentumSmearingFunctions.hh:172
function< Vector3(const Vector3 &, double)> METSmearFn
Definition MomentumSmearingFunctions.hh:139
function< METSmearParams(const Vector3 &, double)> METSmearParamsFn
Definition MomentumSmearingFunctions.hh:134
Vector3 MET_SMEAR_NORM(const METSmearParams &msps)
Smear a nominal vector magnitude by Gaussian with the given absolute resolutions.
Definition MomentumSmearingFunctions.hh:156
std::function< double(const FourMomentum &)> P4EffFn
Typedef for FourMomentum efficiency functions/functors.
Definition MomentumSmearingFunctions.hh:34
double P4_EFF_ONE(const FourMomentum &)
Take a FourMomentum and return 1.
Definition MomentumSmearingFunctions.hh:41
FourMomentum P4_SMEAR_IDENTITY(const FourMomentum &p)
Take a FourMomentum and return it unmodified.
Definition MomentumSmearingFunctions.hh:52
FourMomentum P4_SMEAR_E_GAUSS(const FourMomentum &p, double resolution)
Definition MomentumSmearingFunctions.hh:58
Vector3 P3_SMEAR_PERFECT(const Vector3 &p)
Alias for P3_SMEAR_IDENTITY.
Definition MomentumSmearingFunctions.hh:101
FourMomentum P4_SMEAR_PERFECT(const FourMomentum &p)
Alias for P4_SMEAR_IDENTITY.
Definition MomentumSmearingFunctions.hh:54
Vector3 P3_SMEAR_IDENTITY(const Vector3 &p)
Take a Vector3 and return it unmodified.
Definition MomentumSmearingFunctions.hh:99
double P3_EFF_ZERO(const Vector3 &)
Take a Vector3 and return 0.
Definition MomentumSmearingFunctions.hh:85
FourMomentum P4_SMEAR_MASS_GAUSS(const FourMomentum &p, double resolution)
Smear a FourMomentum's mass using a Gaussian of absolute width resolution.
Definition MomentumSmearingFunctions.hh:72
std::function< FourMomentum(const FourMomentum &)> P4SmearFn
Typedef for FourMomentum smearing functions/functors.
Definition MomentumSmearingFunctions.hh:31
double P4_EFF_ZERO(const FourMomentum &)
Take a FourMomentum and return 0.
Definition MomentumSmearingFunctions.hh:38
Vector3 P3_SMEAR_LEN_GAUSS(const Vector3 &p, double resolution)
Smear a Vector3's length using a Gaussian of absolute width resolution.
Definition MomentumSmearingFunctions.hh:104
double P3_EFF_ONE(const Vector3 &)
Take a Vector3 and return 1.
Definition MomentumSmearingFunctions.hh:88
FourMomentum P4_SMEAR_PT_GAUSS(const FourMomentum &p, double resolution)
Smear a FourMomentum's transverse momentum using a Gaussian of absolute width resolution.
Definition MomentumSmearingFunctions.hh:65
Definition MC_CENT_PPB_Projections.hh:10
std::enable_if_t< std::is_arithmetic_v< N1 > &&std::is_arithmetic_v< N2 >, signed_if_mixed_t< N1, N2 > > max(N1 a, N2 b)
Get the maximum of two numbers.
Definition MathUtils.hh:115
double randnorm(double loc, double scale)
Return a random number sampled from a Gaussian/normal distribution.
Struct for holding MET-smearing parameters.
Definition MomentumSmearingFunctions.hh:121
Take a Vector3 and return a constant number.
Definition MomentumSmearingFunctions.hh:91
Struct for holding momentum-smearing parameters.
Definition MomentumSmearingFunctions.hh:22
Take a FourMomentum and return a constant number.
Definition MomentumSmearingFunctions.hh:44