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
@ NEUTRINO_2
Definition: QCD.h:313
@ NEUTRINO_1
Definition: QCD.h:311
@ NEUTRINO_3
Definition: QCD.h:315
double computeThValue()
The ratio .
Definition: Rneutrinos.cpp:11
const Particle & getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
virtual const double R0_f(const Particle f) const
The ratio .
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121