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

A class for calculating the upper limit ratio for the process \( \tau \to e \gamma \). More...

#include <li_lj_gamma.h>

+ Inheritance diagram for Robs_tau_e_gamma:

Detailed Description

A class for calculating the upper limit ratio for the process \( \tau \to e \gamma \).

Author
HEPfit Collaboration

Definition at line 257 of file li_lj_gamma.h.

Public Member Functions

double computeThValue ()
 
 Robs_tau_e_gamma (const StandardModel &SM_i)
 Calculates the upper limit ratio of the process \( \tau \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

◆ Robs_tau_e_gamma()

Robs_tau_e_gamma::Robs_tau_e_gamma ( const StandardModel SM_i)

Calculates the upper limit ratio of the process \( \tau \to e \gamma \).

Definition at line 140 of file li_lj_gamma.cpp.

141 : ThObservable(SM_i)
142 {}

Member Function Documentation

◆ computeThValue()

double Robs_tau_e_gamma::computeThValue ( )
virtual
Returns
\(R=1+(BR_{\text{theo}}-BR_{\text{obs,90\%}})/BR_{\text{exp,90\%}}\cdot \sqrt{2}\text{InvErf}(0.90)\)

Implements ThObservable.

Definition at line 144 of file li_lj_gamma.cpp.

145 {
146  double alph = SM.getAle();
147  double mTAU = SM.getLeptons(StandardModel::TAU).getMass();
149  double BR_tau_e_gamma = (alph*pow(mTAU,5) * ((*(allcoeff_te[LO])) * (*(allcoeff_te[LO])).conjugate()).abs() / (2.26735e-12) );
150  double BR_tau_e_gamma_obs=3.3e-8; //from Phys.Rev.Lett. 104 (2010) 021802 (Aubert:2009ag)
151  double BR_tau_e_gamma_exp=9.8e-8; //from Phys.Rev.Lett. 104 (2010) 021802 (Aubert:2009ag)
152  double ntos=1.64485362695147; //90% CL
153 
154  return (1+(BR_tau_e_gamma-BR_tau_e_gamma_obs)/BR_tau_e_gamma_exp)*ntos;
155 }

The documentation for this class was generated from the following files:
QCD::TAU
Definition: QCD.h:316
StandardModel::getMyLeptonFlavour
LeptonFlavour * getMyLeptonFlavour() const
Definition: StandardModel.h:1011
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
StandardModel::getAle
double getAle() const
A get method to retrieve the fine-structure constant .
Definition: StandardModel.h:745
gslpp::vector< gslpp::complex >
StandardModel::getLeptons
Particle getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
Definition: StandardModel.h:709