Alepton.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 ALEPTON_H
9 #define ALEPTON_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
30 class Alepton : public ThObservable {
31 public:
32 
37  Alepton(const StandardModel& SM_i)
38  : ThObservable(SM_i)
39  {
40  };
41 
47  double computeThValue();
48 
49 
50 private:
51 
52 
53 };
54 
55 
56 #endif /* ALEPTON_H */
57 
An observable class for the left-right asymmetry in at the pole.
Definition: Alepton.h:30
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
double computeThValue()
The left-right asymmetry for at the pole, .
Definition: Alepton.cpp:10
Alepton(const StandardModel &SM_i)
Constructor.
Definition: Alepton.h:37