NPEpsilons.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  * All rights reserved.
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef NPEPSILONS_H
9 #define NPEPSILONS_H
10 
11 #include "NPbase.h"
12 
123 class NPEpsilons : public NPbase {
124 public:
125 
129  static const int NEPSILONvars = 4;
130 
134  static const std::string EPSILONvars[NEPSILONvars];
135 
139  NPEpsilons();
140 
145  virtual bool PostUpdate();
146 
151  virtual bool CheckParameters(const std::map<std::string, double>& DPars);
152 
157  virtual bool setFlag(const std::string name, const bool value);
158 
160 
166  virtual double epsilon1() const;
167 
173  virtual double epsilon2() const;
174 
180  virtual double epsilon3() const;
181 
187  virtual double epsilonb() const;
188 
189 
191 
198  virtual double Mw() const;
199 
205  virtual double GammaW() const;
206 
211  virtual double Gamma_Z() const;
212 
217  virtual double sigma0_had() const;
218 
224  virtual double sin2thetaEff(const Particle p) const;
225 
232  virtual double A_f(const Particle p) const;
233 
240  virtual double AFB(const Particle p) const;
241 
248  virtual double R0_f(const Particle p) const;
249 
254  double Mw_NPEpsilons() const;
255 
256 
277  double Mw_eps(const double eps1, const double eps2, const double eps3) const;
278 
299  gslpp::complex rhoZ_f_eps(const Particle f, const double eps1, const double epsb = 0.) const;
300 
306  virtual gslpp::complex rhoZ_f(const Particle f) const;
307 
330  gslpp::complex kappaZ_f_eps(const Particle f, const double eps1, const double eps3, const double epsb = 0.) const;
331 
338  virtual gslpp::complex kappaZ_f(const Particle f) const;
339 
356  gslpp::complex gV_f_eps(const Particle f, const double eps1, const double eps3, const double epsb = 0.) const;
357 
363  virtual gslpp::complex gV_f(const Particle f) const;
364 
379  gslpp::complex gA_f_eps(const Particle f, const double eps1, const double epsb = 0.) const;
380 
387  virtual gslpp::complex gA_f(const Particle f) const;
388 
389 
391 protected:
392 
393  double myEpsilon_1;
394  double myEpsilon_2;
395  double myEpsilon_3;
396  double myEpsilon_b;
397 
402  virtual void setParameter(const std::string name, const double& value);
403 
404 
406 private:
407 
412 
431  double Delta_rW(const double eps1, const double eps2, const double eps3) const;
432 
446  double Delta_kappaPrime(const double eps1, const double eps3) const;
447 
448 
449 };
450 
451 #endif /* NPEPSILONS_H */
452 
virtual bool CheckParameters(const std::map< std::string, double > &DPars)
A method to check if all the mandatory parameters for the model have been provided in model initializ...
Definition: NPEpsilons.cpp:57
double Mw_NPEpsilons() const
The boson mass .
virtual double epsilon2() const
The parameter .
Definition: NPEpsilons.cpp:97
double myEpsilon_2
The parameter .
Definition: NPEpsilons.h:394
The auxiliary base model class for other model classes.
Definition: NPbase.h:66
virtual bool setFlag(const std::string name, const bool value)
A method to set a flag of the model.
Definition: NPEpsilons.cpp:69
A class for particles.
Definition: Particle.h:26
static const std::string EPSILONvars[NEPSILONvars]
A string array containing the labels of the model parameters in NPEpsilons.
Definition: NPEpsilons.h:134
virtual double sin2thetaEff(const Particle p) const
The effective weak mixing angle for at the the -mass scale.
Definition: NPEpsilons.cpp:146
A model class for new physics in the form of contributions to the parameters.
Definition: NPEpsilons.h:123
virtual double Mw() const
The mass of the boson, .
Definition: NPEpsilons.cpp:126
virtual double GammaW() const
The total width of the boson, .
Definition: NPEpsilons.cpp:131
gslpp::complex gV_f_eps(const Particle f, const double eps1, const double eps3, const double epsb=0.) const
The effective neutral-current vector coupling .
Definition: NPEpsilons.cpp:194
NPEpsilons()
The default constructor.
Definition: NPEpsilons.cpp:14
double myEpsilon_3
The parameter .
Definition: NPEpsilons.h:395
virtual gslpp::complex gA_f(const Particle f) const
The total (SM+NP) contribution to the neutral-current axial-vector coupling .
Definition: NPEpsilons.cpp:261
std::string name
The name of the model.
Definition: Model.h:203
virtual double sigma0_had() const
The hadronic cross section for at the -pole, .
Definition: NPEpsilons.cpp:141
double myEpsilon_1
The parameter .
Definition: NPEpsilons.h:393
bool FlagEpsilon2SM
A boolean flag that is true if only the SM contribution is considered for .
Definition: NPEpsilons.h:409
virtual gslpp::complex gV_f(const Particle f) const
The total (SM+NP) contribution to the neutral-current vector coupling .
Definition: NPEpsilons.cpp:251
gslpp::complex kappaZ_f_eps(const Particle f, const double eps1, const double eps3, const double epsb=0.) const
The effective neutral-current coupling .
Definition: NPEpsilons.cpp:225
bool FlagEpsilonbSM
A boolean flag that is true if only the SM contribution is considered for .
Definition: NPEpsilons.h:411
bool FlagEpsilon1SM
A boolean flag that is true if only the SM contribution is considered for .
Definition: NPEpsilons.h:408
virtual gslpp::complex rhoZ_f(const Particle f) const
The effective neutral-current coupling including SM plus NP contributions.
Definition: NPEpsilons.cpp:184
double Delta_kappaPrime(const double eps1, const double eps3) const
The auxiliary function .
Definition: NPEpsilons.cpp:279
virtual void setParameter(const std::string name, const double &value)
A method to set the value of a parameter of the model.
Definition: NPEpsilons.cpp:43
static const int NEPSILONvars
The number of the model parameters in NPEpsilons.
Definition: NPEpsilons.h:129
virtual double AFB(const Particle p) const
The forward-backward asymmetry in at the -pole, .
Definition: NPEpsilons.cpp:156
virtual double A_f(const Particle p) const
The left-right asymmetry in at the -pole, .
Definition: NPEpsilons.cpp:151
double myEpsilon_b
The parameter .
Definition: NPEpsilons.h:396
virtual double R0_f(const Particle p) const
The ratio or , for leptons or quarks, respectively.
Definition: NPEpsilons.cpp:161
virtual double epsilonb() const
The parameter .
Definition: NPEpsilons.cpp:107
double Delta_rW(const double eps1, const double eps2, const double eps3) const
The auxiliary function .
Definition: NPEpsilons.cpp:273
virtual bool PostUpdate()
The post-update method for NPEpsilons.
Definition: NPEpsilons.cpp:29
bool FlagEpsilon3SM
A boolean flag that is true if only the SM contribution is considered for .
Definition: NPEpsilons.h:410
virtual double epsilon3() const
The parameter .
Definition: NPEpsilons.cpp:102
virtual double epsilon1() const
The parameter .
Definition: NPEpsilons.cpp:92
A class for defining operations on and functions of complex numbers.
Definition: gslpp_complex.h:35
virtual gslpp::complex kappaZ_f(const Particle f) const
The effective neutral-current coupling including SM plus NP contributions.
Definition: NPEpsilons.cpp:241
virtual double Gamma_Z() const
The total decay width of the boson, .
Definition: NPEpsilons.cpp:136
double Mw_eps(const double eps1, const double eps2, const double eps3) const
The -boson mass .
Definition: NPEpsilons.cpp:115
gslpp::complex rhoZ_f_eps(const Particle f, const double eps1, const double epsb=0.) const
The effective neutral-current coupling .
Definition: NPEpsilons.cpp:169
gslpp::complex gA_f_eps(const Particle f, const double eps1, const double epsb=0.) const
The effective neutral-current axial-vector coupling .
Definition: NPEpsilons.cpp:211