a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Rneutrinos.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #include "Rneutrinos.h"
9 #include "StandardModel.h"
10 
12 {
13  double Rnue = SM.R0_f(SM.getLeptons(SM.NEUTRINO_1));
14  double Rnumu = SM.R0_f(SM.getLeptons(SM.NEUTRINO_2));
15  double Rnutau = SM.R0_f(SM.getLeptons(SM.NEUTRINO_3));
16 
17  return (Rnue + Rnumu + Rnutau);
18 }
19 
20 
QCD::NEUTRINO_3
Definition: QCD.h:315
Rneutrinos.h
StandardModel.h
Rneutrinos::computeThValue
double computeThValue()
The ratio .
Definition: Rneutrinos.cpp:11
QCD::NEUTRINO_2
Definition: QCD.h:313
ThObservable::SM
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
StandardModel::R0_f
virtual double R0_f(const Particle f) const
The ratio .
Definition: StandardModel.cpp:1395
QCD::NEUTRINO_1
Definition: QCD.h:311
StandardModel::getLeptons
Particle getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
Definition: StandardModel.h:712