li_lj_gamma.cpp
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 #include "li_lj_gamma.h"
9 #include "StandardModel.h"
10 
11 //li_lj_gamma::li_lj_gamma(const StandardModel& SM_i): ThObservable(SM_i)
12 //{
13 //};
14 //
15 //double li_lj_gamma::computeThValue()
16 //{
17 // return 0.0;
18 //}
19 
21 : ThObservable(SM_i), mySM(SM_i)
22 {}
23 
25 {
26  double alph = mySM.getAle();
27  double mMU = mySM.getLeptons(StandardModel::MU).getMass();
29  double BR_mu_e_gamma = (alph*pow(mMU,5) * ((*(allcoeff_me[LO])) * (*(allcoeff_me[LO])).conjugate()).abs() / (2.99598e-19) );
30 // double BR_mu_e_gamma = log10((alph*pow(mMU,5.0) * ((*(allcoeff_me[LO])) * (*(allcoeff_me[LO])).conjugate()).abs() / (3.0e-19) )); /*This is the log!*/
31  return BR_mu_e_gamma;
32 }
33 
35 : ThObservable(SM_i), mySM(SM_i)
36 {}
37 
39 {
40  double alph = mySM.getAle();
41  double mTAU = mySM.getLeptons(StandardModel::TAU).getMass();
43  double BR_tau_mu_gamma = (alph*pow(mTAU,5) * ((*(allcoeff_tm[LO])) * (*(allcoeff_tm[LO])).conjugate()).abs() / (2.26735e-12) );
44  return BR_tau_mu_gamma;
45 }
46 
48 : ThObservable(SM_i), mySM(SM_i)
49 {}
50 
52 {
53  double alph = mySM.getAle();
54  double mTAU = mySM.getLeptons(StandardModel::TAU).getMass();
56  double BR_tau_e_gamma = (alph*pow(mTAU,5) * ((*(allcoeff_te[LO])) * (*(allcoeff_te[LO])).conjugate()).abs() / (2.26735e-12) );
57  return BR_tau_e_gamma;
58 }
Particle getLeptons(const StandardModel::lepton p) const
A get method to retrieve the member object of a lepton.
gslpp::vector< gslpp::complex > ** ComputeCoeffli_lj_gamma(int li_lj)
Computes the Wilson coefficient for the process .
Definition: LeptonFlavour.h:58
complex pow(const complex &z1, const complex &z2)
const StandardModel & mySM
Constructor containing the Wilson coefficient.
Definition: li_lj_gamma.h:121
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
const StandardModel & mySM
Constructor containing the Wilson coefficient.
Definition: li_lj_gamma.h:61
const StandardModel & mySM
Constructor containing the Wilson coefficient.
Definition: li_lj_gamma.h:91
mu_e_gamma(const StandardModel &SM_i)
Calculates the value of the process .
Definition: li_lj_gamma.cpp:20
LeptonFlavour * getMyLeptonFlavour() const
Definition: OrderScheme.h:33
tau_mu_gamma(const StandardModel &SM_i)
Calculates the value of the process .
Definition: li_lj_gamma.cpp:34
double getAle() const
A get method to retrieve the fine-structure constant .
const double & getMass() const
A get method to access the particle mass.
Definition: Particle.h:61
tau_e_gamma(const StandardModel &SM_i)
Calculates the value of the process .
Definition: li_lj_gamma.cpp:47
double computeThValue()
Definition: li_lj_gamma.cpp:38
double computeThValue()
Definition: li_lj_gamma.cpp:51
double computeThValue()
Definition: li_lj_gamma.cpp:24