alpha.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  * All rights reserved.
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef ALPHA_H
9 #define ALPHA_H
10 
11 #include "ThObservable.h"
12 
13 
14 
15 class Alpha : public ThObservable {
16 public:
17  Alpha(const StandardModel& SM_i) : ThObservable(SM_i) {};
18 
19  double computeThValue();
20 };
21 
22 #endif /* ALPHA_H */
double computeThValue()
Definition: alpha.cpp:10
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
Definition: alpha.h:15
Alpha(const StandardModel &SM_i)
Definition: alpha.h:17