GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-thdm.cpp
Go to the documentation of this file.
5#include "gm2calc/THDM.hpp"
6
7#include <cstdio>
8
9int main()
10{
13 basis.mh = 125;
14 basis.mH = 400;
15 basis.mA = 420;
16 basis.mHp = 440;
17 basis.sin_beta_minus_alpha = 0.999;
18 basis.lambda_6 = 0;
19 basis.lambda_7 = 0;
20 basis.tan_beta = 3;
21 basis.m122 = 40000;
22 basis.zeta_u = 0;
23 basis.zeta_d = 0;
24 basis.zeta_l = 0;
25 basis.Delta_u << 0, 0, 0, 0, 0, 0, 0, 0, 0;
26 basis.Delta_d << 0, 0, 0, 0, 0, 0, 0, 0, 0;
27 basis.Delta_l << 0, 0, 0, 0, 0, 0, 0, 0, 0;
28 basis.Pi_u << 0, 0, 0, 0, 0, 0, 0, 0, 0;
29 basis.Pi_d << 0, 0, 0, 0, 0, 0, 0, 0, 0;
30 basis.Pi_l << 0, 0, 0, 0, 0, 0, 0, 0, 0;
31
32 gm2calc::SM sm;
33 sm.set_alpha_em_mz(1.0/128.94579);
34 sm.set_mu(2, 173.34);
35 sm.set_mu(1, 1.28);
36 sm.set_md(2, 4.18);
37 sm.set_ml(2, 1.77684);
38
40 config.force_output = false;
41 config.running_couplings = true;
42
43 try {
44 const gm2calc::THDM model(basis, sm, config);
45
46 const double amu = gm2calc::calculate_amu_1loop(model)
48
49 const double delta_amu =
51
52 std::printf("amu = %.5e +- %.5e\n", amu, delta_amu);
53 } catch (const gm2calc::Error& e) {
54 std::printf("%s\n", e.what());
55 }
56
57 return 0;
58}
void set_alpha_em_mz(double a) noexcept
Definition SM.hpp:33
void set_md(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:39
void set_ml(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:41
void set_mu(const Eigen::Matrix< double, 3, 1 > &m) noexcept
Definition SM.hpp:38
Contains routines to determine the THDM parameters.
Definition THDM.hpp:98
int main()
double calculate_amu_2loop(const MSSMNoFV_onshell &model)
Calculates best 2-loop SUSY contribution to a_mu with tan(beta) resummation.
double calculate_uncertainty_amu_2loop(const THDM &, double, double)
calculates uncertainty for amu(2-loop)
double calculate_amu_1loop(const MSSMNoFV_onshell &model)
Calculates full 1-loop SUSY contribution to (g-2), Eq (45) of arXiv:hep-ph/0609168.
Definition gm2_1loop.cpp:74
Configuration options for the THDM.
Definition THDM.hpp:37
bool running_couplings
use running couplings
Definition THDM.hpp:39
bool force_output
force output
Definition THDM.hpp:38
Yukawa_type yukawa_type
Definition THDM.hpp:71
Eigen::Matrix< double, 3, 3 > Delta_u
Definition THDM.hpp:84
Eigen::Matrix< double, 3, 3 > Pi_u
Definition THDM.hpp:87
Eigen::Matrix< double, 3, 3 > Delta_d
Definition THDM.hpp:85
Eigen::Matrix< double, 3, 3 > Pi_d
Definition THDM.hpp:88
Eigen::Matrix< double, 3, 3 > Pi_l
Definition THDM.hpp:89
Eigen::Matrix< double, 3, 3 > Delta_l
Definition THDM.hpp:86