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