GM2Calc 2.3.0
Loading...
Searching...
No Matches
SM_c.cpp
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#include "gm2calc/SM.h"
20#include "gm2calc/SM.hpp"
21#include <complex>
22
23extern "C"
24{
25
26/**
27 * @brief Set SM prameters to default values
28 */
30{
31 if (sm == nullptr) {
32 return;
33 }
34
35 gm2calc::SM def;
36 sm->alpha_em_0 = def.get_alpha_em_0();
37 sm->alpha_em_mz = def.get_alpha_em_mz();
38 sm->alpha_s_mz = def.get_alpha_s_mz();
39 sm->mh = def.get_mh();
40 sm->mw = def.get_mw();
41 sm->mz = def.get_mz();
42 for (int i = 0; i < 3; i++) {
43 sm->mu[i] = def.get_mu(i);
44 }
45 for (int i = 0; i < 3; i++) {
46 sm->md[i] = def.get_md(i);
47 }
48 for (int i = 0; i < 3; i++) {
49 sm->mv[i] = def.get_mv(i);
50 }
51 for (int i = 0; i < 3; i++) {
52 sm->ml[i] = def.get_ml(i);
53 }
54 for (int i = 0; i < 3; i++) {
55 for (int k = 0; k < 3; k++) {
56 sm->ckm_real[i][k] = std::real(def.get_ckm(i, k));
57 sm->ckm_imag[i][k] = std::imag(def.get_ckm(i, k));
58 }
59 }
60}
61
62} // extern "C"
contains declarations of C interface functions for the SM
void gm2calc_sm_set_to_default(gm2calc_SM *sm)
Set SM prameters to default values.
Definition SM_c.cpp:29
double get_mz() const
Definition SM.hpp:56
double get_mw() const
Definition SM.hpp:55
const Eigen::Matrix< std::complex< double >, 3, 3 > & get_ckm() const
Definition SM.hpp:73
double get_alpha_em_0() const
Definition SM.hpp:51
const Eigen::Matrix< double, 3, 1 > & get_mv() const
Definition SM.hpp:59
const Eigen::Matrix< double, 3, 1 > & get_ml() const
Definition SM.hpp:60
double get_alpha_s_mz() const
Definition SM.hpp:53
double get_mh() const
Definition SM.hpp:54
double get_alpha_em_mz() const
Definition SM.hpp:52
const Eigen::Matrix< double, 3, 1 > & get_mu() const
Definition SM.hpp:57
const Eigen::Matrix< double, 3, 1 > & get_md() const
Definition SM.hpp:58
double alpha_em_0
Definition SM.h:35
double mz
Definition SM.h:40
double md[3]
Definition SM.h:42
double mu[3]
Definition SM.h:41
double mh
Definition SM.h:38
double ckm_imag[3][3]
Definition SM.h:46
double ml[3]
Definition SM.h:44
double ckm_real[3][3]
Definition SM.h:45
double alpha_s_mz
Definition SM.h:37
double mv[3]
Definition SM.h:43
double mw
Definition SM.h:39
double alpha_em_mz
Definition SM.h:36