Heffgminus2.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 HEPfit Collaboration
3  * All rights reserved.
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef HEFFGMINUS2_H
9 #define HEFFGMINUS2_H
10 
11 #include "StandardModel.h"
12 #include "StandardModelMatching.h"
13 #include "WilsonCoefficient.h"
14 
23 class Heffgminus2 {
24 public:
29  Heffgminus2(const StandardModel & SM_i);
30 
35  virtual ~Heffgminus2();
36 
42 
46  const StandardModel& GetModel() const {
47  return model;
48  }
49 
50 private :
55 
60 
61 };
62 
63 #endif /* HEFFGMINUS2_H */
virtual ~Heffgminus2()
destructor of the class Heffgminus2.
Definition: Heffgminus2.cpp:15
Heffgminus2(const StandardModel &SM_i)
The constructor of the class Heffgminus2.
Definition: Heffgminus2.cpp:10
A class for the Wilson coefficients.
A model class for the Standard Model.
A class for calculating all the Wilson coefficients for the process at one-loop. ...
Definition: Heffgminus2.h:23
const StandardModel & model
Variable which stores the model information.
Definition: Heffgminus2.h:54
WilsonCoefficient coeffgminus2mu
Variable which stores the Wilson coefficient for at one-loop.
Definition: Heffgminus2.h:59
const StandardModel & GetModel() const
Calls the model analyzed to calculate Wilson coefficients for the process at one-loop.
Definition: Heffgminus2.h:46
gslpp::vector< gslpp::complex > ** ComputeCoeffgm2mu()
Computes the Wilson coefficients for the process at one-loop.
Definition: Heffgminus2.cpp:18