GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-slha.cpp
Go to the documentation of this file.
6
7#include <cstdio>
8
11
12 const double Pi = 3.141592653589793;
13 const Eigen::Matrix<double,3,3> UnitMatrix
14 = Eigen::Matrix<double,3,3>::Identity();
15
16 // fill SM parameters
17 model.set_alpha_MZ(0.0077552); // 1L
18 model.set_alpha_thompson(0.00729735); // 2L
19 model.set_g3(std::sqrt(4 * Pi * 0.1184)); // 2L
20 model.get_physical().MFt = 173.34; // 2L
21 model.get_physical().MFb = 4.18; // 2L, mb(mb) MS-bar
22 model.get_physical().MFm = 0.1056583715; // 1L
23 model.get_physical().MFtau = 1.777; // 2L
24 model.get_physical().MVWm = 80.385; // 1L
25 model.get_physical().MVZ = 91.1876; // 1L
26
27 // fill pole masses
28 model.get_physical().MSvmL = 5.18860573e+02; // 1L
29 model.get_physical().MSm(0) = 5.05095249e+02; // 1L
30 model.get_physical().MSm(1) = 5.25187016e+02; // 1L
31 model.get_physical().MChi(0) = 2.01611468e+02; // 1L
32 model.get_physical().MChi(1) = 4.10040273e+02; // 1L
33 model.get_physical().MChi(2) = -5.16529941e+02; // 1L
34 model.get_physical().MChi(3) = 5.45628749e+02; // 1L
35 model.get_physical().MCha(0) = 4.09989890e+02; // 1L
36 model.get_physical().MCha(1) = 5.46057190e+02; // 1L
37 model.get_physical().MAh(1) = 1.50000000e+03; // 2L
38
39 // fill DR-bar parameters
40 model.set_TB(40); // 1L
41 model.set_Mu(500); // initial guess
42 model.set_MassB(200); // initial guess
43 model.set_MassWB(400); // initial guess
44 model.set_MassG(2000); // 2L
45 model.set_mq2(7000 * 7000 * UnitMatrix); // 2L
46 model.set_ml2(0, 0, 500 * 500); // 2L
47 model.set_ml2(1, 1, 500 * 500); // irrelevant
48 model.set_ml2(2, 2, 500 * 500); // 2L
49 model.set_md2(7000 * 7000 * UnitMatrix); // 2L
50 model.set_mu2(7000 * 7000 * UnitMatrix); // 2L
51 model.set_me2(0, 0, 500 * 500); // 2L
52 model.set_me2(1, 1, 500 * 500); // initial guess
53 model.set_me2(2, 2, 500 * 500); // 2L
54 model.set_Au(2, 2, 0); // 2L
55 model.set_Ad(2, 2, 0); // 2L
56 model.set_Ae(1, 1, 0); // 1L
57 model.set_Ae(2, 2, 0); // 2L
58 model.set_scale(1000); // 2L
59
60 // convert DR-bar parameters to on-shell
61 model.convert_to_onshell();
62
63 // check for warnings
64 if (model.get_problems().have_warning()) {
65 std::printf("%s\n", model.get_problems().get_warnings().c_str());
66 }
67
68 // check for problems
69 if (model.get_problems().have_problem()) {
70 std::printf("%s\n", model.get_problems().get_problems().c_str());
71 }
72
73 return model;
74}
75
76int main() {
77 try {
79
80 const double amu =
83
84 const double delta_amu =
86
87 std::printf("amu = %.5e +- %.5e\n", amu, delta_amu);
88 } catch (const gm2calc::Error& e) {
89 std::printf("%s\n", e.what());
90 }
91
92 return 0;
93}
const MSSMNoFV_onshell_physical & get_physical() const
const MSSMNoFV_onshell_problems & get_problems() const
bool have_problem() const
returns true if problem has occurred
std::string get_warnings() const
get warnings as string
bool have_warning() const
returns true if there is a warning
std::string get_problems() const
get problems as string
void set_md2(const Eigen::Matrix< double, 3, 3 > &md2_)
void set_mu2(const Eigen::Matrix< double, 3, 3 > &mu2_)
void set_mq2(const Eigen::Matrix< double, 3, 3 > &mq2_)
void set_ml2(const Eigen::Matrix< double, 3, 3 > &ml2_)
void set_me2(const Eigen::Matrix< double, 3, 3 > &me2_)
contains the MSSMNoFV parameters in the on-shell scheme
void set_Au(const Eigen::Matrix< double, 3, 3 > &A)
soft-breaking trilinear up-type squark coupling
void set_TB(double)
set tan(beta)
void convert_to_onshell(double precision=1e-8, unsigned max_iterations=1000)
convert given (DR-bar) parameters to mixed on-shell/DR-bar scheme
void set_alpha_MZ(double)
set alpha(MZ) w/o hadronic corrections
void set_Ad(const Eigen::Matrix< double, 3, 3 > &A)
soft-breaking trilinear down-type squark coupling
void set_alpha_thompson(double)
set alpha in the Thomson limit
void set_Ae(const Eigen::Matrix< double, 3, 3 > &A)
soft-breaking trilinear on-shell down-type slepton coupling
gm2calc::MSSMNoFV_onshell setup()
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