a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
sigmaHadron.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 SIGMAHADRON_H
9 #define SIGMAHADRON_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
32 class sigmaHadron : public ThObservable {
33 public:
34 
39  sigmaHadron(const StandardModel& SM_i)
40  : ThObservable(SM_i)
41  {
42  };
43 
49  double computeThValue();
50 
51 
52 private:
53 
54 
55 };
56 
57 #endif /* SIGMAHADRON_H */
58 
sigmaHadron
An observable class for the cross section of at the pole.
Definition: sigmaHadron.h:32
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
sigmaHadron::sigmaHadron
sigmaHadron(const StandardModel &SM_i)
Constructor.
Definition: sigmaHadron.h:39
sigmaHadron::computeThValue
double computeThValue()
The cross section for the process at the pole, , in units of nb.
Definition: sigmaHadron.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25