a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Btaunu.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef BTAUNU_H
9 #define BTAUNU_H
10 
11 #include "ThObservable.h"
12 #include "QCD.h"
13 
14 class StandardModel;
15 
25 class Btaunu : public ThObservable {
26 public:
31  Btaunu(const StandardModel& SM_i, QCD::meson meson_i);
32 
38  double computeThValue();
39 
40 protected:
41 
42 private:
43 
44  QCD::meson meson;
45 
46 };
47 
48 #endif /* BTAUNU_H */
ThObservable::computeThValue
virtual double computeThValue()=0
A member to be overloaded by the respective theory observable. class that calculates the value of the...
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
QCD::meson
meson
An enum type for mesons.
Definition: QCD.h:336
QCD.h
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25