a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
log_meg Class Reference

A class for calculating the branching ratio of the process \( \mu \to e \gamma \). More...

#include <li_lj_gamma.h>

+ Inheritance diagram for log_meg:

Detailed Description

A class for calculating the branching ratio of the process \( \mu \to e \gamma \).

Author
HEPfit Collaboration

The log_meg class calculates the branching ratio of the process \( \mu \to e \gamma \) in the model.

Definition at line 48 of file li_lj_gamma.h.

Public Member Functions

double computeThValue ()
 
 log_meg (const StandardModel &SM_i)
 Calculates the value of the process \( \mu \to e \gamma \). More...
 
- Public Member Functions inherited from ThObservable
double getBinMax ()
 A get method to get the maximum value of the bin. More...
 
double getBinMin ()
 A get method to get the minimum value of the bin. More...
 
const StandardModelgetModel ()
 A get method to get the model. More...
 
const std::vector< std::string > getParametersForObservable ()
 A get method to get the parameters for the specific observable. More...
 
void setBinMax (double max)
 A set method to set the maximum value of the bin. More...
 
void setBinMin (double min)
 A set method to set the minimum value of the bin. More...
 
void setParametersForObservable (std::vector< std::string > parametersForObservable_i)
 A set method to get the parameters for the specific observable. More...
 
 ThObservable (const StandardModel &SM_i)
 Constructor. More...
 
 ThObservable (const ThObservable &orig)
 The copy constructor. More...
 
virtual ~ThObservable ()
 The default destructor. More...
 

Additional Inherited Members

- Protected Attributes inherited from ThObservable
double max
 the bin maximum. More...
 
double min
 The bin minimum. More...
 
std::vector< std::string > parametersForObservable
 a vector of parameter namesfor the specific observable More...
 
const StandardModelSM
 A reference to an object of StandardMode class. More...
 

Constructor & Destructor Documentation

◆ log_meg()

log_meg::log_meg ( const StandardModel SM_i)

Calculates the value of the process \( \mu \to e \gamma \).

Returns
value of the process \( \mu \to e \gamma \).

Definition at line 24 of file li_lj_gamma.cpp.

25 : ThObservable(SM_i)
26 {}

Member Function Documentation

◆ computeThValue()

double log_meg::computeThValue ( )
virtual
Returns
decadic log of the process \( \mu \to e \gamma \).

Implements ThObservable.

Definition at line 28 of file li_lj_gamma.cpp.

29 {
30  double alph = SM.getAle();
31  double mMU = SM.getLeptons(StandardModel::MU).getMass();
33  double BR_mu_e_gamma = (alph*pow(mMU,5) * ((*(allcoeff_me[LO])) * (*(allcoeff_me[LO])).conjugate()).abs() / (2.99598e-19) );
34  return log10(BR_mu_e_gamma);
35 }

The documentation for this class was generated from the following files:
StandardModel::getMyLeptonFlavour
LeptonFlavour * getMyLeptonFlavour() const
Definition: StandardModel.h:1025
LO
Definition: OrderScheme.h:33
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
Particle::getMass
const double & getMass() const
A get method to access the particle mass.
Definition: Particle.h:61
gslpp::pow
complex pow(const complex &z1, const complex &z2)
Definition: gslpp_complex.cpp:395
LeptonFlavour::ComputeCoeffli_lj_gamma
gslpp::vector< gslpp::complex > ** ComputeCoeffli_lj_gamma(int li_lj)
Computes the Wilson coefficient for the process .
Definition: LeptonFlavour.h:52
ThObservable::SM
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
gslpp::log10
complex log10(const complex &z)
Definition: gslpp_complex.cpp:351
StandardModel::getAle
double getAle() const
A get method to retrieve the fine-structure constant .
Definition: StandardModel.h:748
gslpp::vector< gslpp::complex >
QCD::MU
Definition: QCD.h:314
StandardModel::getLeptons
Particle getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
Definition: StandardModel.h:712