a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
alpha_s.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 ALPHA_S_H
9#define ALPHA_S_H
10
11#include "ThObservable.h"
12#include "OrderScheme.h"
13class StandardModel;
14
15class alpha_s : public ThObservable {
16public:
22 alpha_s(const StandardModel& SM_i, orders order);
23
27 virtual ~alpha_s() {};
28
34 double computeThValue();
35private:
36
38
39};
40
41#endif /* ALPHA_S_H */
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25
virtual ~alpha_s()
Definition: alpha_s.h:27
alpha_s(const StandardModel &SM_i, orders order)
Definition: alpha_s.cpp:11
double computeThValue()
A method to get the value of .
Definition: alpha_s.cpp:18
orders order
Definition: alpha_s.h:37
orders
An enum type for orders in QCD.
Definition: OrderScheme.h:33