a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Nneutrinos.h
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 #ifndef N_NU_H
9 #define N_NU_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
30 class Nneutrinos : public ThObservable {
31 public:
32 
38  : ThObservable(SM_i)
39  {
40  };
41 
47  double computeThValue();
48 
49 
50 private:
51 
52 
53 };
54 
55 #endif /* N_NU_H */
56 
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
Nneutrinos
An observable class for the number of neutrinos obtained indirectly from the measurements at the Z po...
Definition: Nneutrinos.h:30
Nneutrinos::computeThValue
double computeThValue()
The number of neutrinos obtained indirectly from the measurements at the Z pole, .
Definition: Nneutrinos.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
Nneutrinos::Nneutrinos
Nneutrinos(const StandardModel &SM_i)
Constructor.
Definition: Nneutrinos.h:37