a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Heffmueconv.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 HEFFMUECONV_H
9#define HEFFMUECONV_H
10
11#include "StandardModel.h"
13#include "WilsonCoefficient.h"
14
24public:
30 Heffmueconv(const StandardModel & SM_i);
31
35 virtual ~Heffmueconv();
36
41 gslpp::vector<gslpp::complex>** ComputeCoeffmueconv();
42
46 const StandardModel& GetModel() const {
47 return model;
48 }
49
50private :
55
60
61};
62
63#endif /* HEFFMUECONV_H */
A class for calculating all the Wilson coefficients for the process conversion in Nuclei.
Definition: Heffmueconv.h:23
const StandardModel & GetModel() const
Calls the model analyzed to calculate Wilson coefficients for the process conversion in Nuclei.
Definition: Heffmueconv.h:46
virtual ~Heffmueconv()
destructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:15
WilsonCoefficient coeffmueconv
Variable which stores the Wilson coefficient for conversion in Nuclei.
Definition: Heffmueconv.h:59
gslpp::vector< gslpp::complex > ** ComputeCoeffmueconv()
Computes the Wilson coefficients for the process conversion in Nuclei.
Definition: Heffmueconv.cpp:18
const StandardModel & model
Variable which stores the model information.
Definition: Heffmueconv.h:54
Heffmueconv(const StandardModel &SM_i)
The constructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:10
A model class for the Standard Model.
A class for the Wilson coefficients.