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