GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2_mf.hpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of GM2Calc.
3//
4// GM2Calc is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published
6// by the Free Software Foundation, either version 3 of the License,
7// or (at your option) any later version.
8//
9// GM2Calc is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with GM2Calc. If not, see
16// <http://www.gnu.org/licenses/>.
17// ====================================================================
18
19#ifndef GM2_MF_HPP
20#define GM2_MF_HPP
21
22namespace gm2calc {
23
24/// calculates mb(Q) DR-bar
25double calculate_mb_SM5_DRbar(double mb_mb, double alpha_s, double scale);
26
27/// calculates mt(Q) MS-bar in the SM(6)
28double calculate_mt_SM6_MSbar(double mt_pole, double alpha_s_mz, double mz, double scale) noexcept;
29
30/// calculates mb(Q) MS-bar in the SM(6)
31double calculate_mb_SM6_MSbar(double mb_mb, double mt_pole, double alpha_s_mz, double mz, double scale) noexcept;
32
33/// calculates mtau(Q) MS-bar in the SM(6)
34double calculate_mtau_SM6_MSbar(double mtau_pole, double alpha_em_mz, double scale) noexcept;
35
36} // namespace gm2calc
37
38#endif
void svd_eigen(const Eigen::Matrix< Scalar, M, N > &m, Eigen::Array< Real,(((M)<(N)) ?(M) :(N)), 1 > &s, Eigen::Matrix< Scalar, M, M > *u, Eigen::Matrix< Scalar, N, N > *vh)
double calculate_mtau_SM6_MSbar(double mtau_pole, double alpha_em_mz, double scale) noexcept
Calculates the running tau lepton MS-bar mass mtau(SM(6),Q) in the SM(6) at the scale Q.
Definition gm2_mf.cpp:293
double calculate_mb_SM5_DRbar(double mb_mb, double alpha_s, double scale)
Calculates mb(Q) in the DR-bar scheme in the SM w/ 5 active quark flavours using the approach describ...
Definition gm2_mf.cpp:202
double calculate_mb_SM6_MSbar(double mb_mb, double mt_pole, double alpha_s_mz, double mz, double scale) noexcept
Calculates the running bottom quark MS-bar mass mb(SM(6),Q) in the SM(6) at the scale Q.
Definition gm2_mf.cpp:262
double calculate_mt_SM6_MSbar(double mt_pole, double alpha_s_mz, double mz, double scale) noexcept
Calculates the running top quark MS-bar mass mt(SM(6),Q) at the scale Q.
Definition gm2_mf.cpp:232