GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-gm2scan.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/gm2_1loop.hpp"
20#include "gm2calc/gm2_2loop.hpp"
22#include "gm2calc/gm2_error.hpp"
24
25#include <cstdio>
26#include <iostream>
27#include <string>
28
30{
32
33 const double Pi = 3.141592653589793;
34 const Eigen::Matrix<double,3,3> UnitMatrix
35 = Eigen::Matrix<double,3,3>::Identity();
36
37 // fill SM parameters
38 model.set_alpha_MZ(0.0077552); // 1L
39 model.set_alpha_thompson(0.00729735); // 2L
40 model.set_g3(std::sqrt(4 * Pi * 0.1184)); // 2L
41 model.get_physical().MFt = 173.34; // 2L
42 model.get_physical().MFb = 4.18; // 2L, mb(mb) MS-bar
43 model.get_physical().MFm = 0.1056583715; // 1L
44 model.get_physical().MFtau = 1.777; // 2L
45 model.get_physical().MVWm = 80.385; // 1L
46 model.get_physical().MVZ = 91.1876; // 1L
47
48 // fill DR-bar parameters
49 model.set_TB(10); // 1L
50 model.set_Ae(1,1,0); // 1L
51
52 // fill on-shell parameters
53 model.set_Mu(350); // 1L
54 model.set_MassB(150); // 1L
55 model.set_MassWB(300); // 1L
56 model.set_MassG(1000); // 2L
57 model.set_mq2(500 * 500 * UnitMatrix); // 2L
58 model.set_ml2(500 * 500 * UnitMatrix); // 1L(smuon)/2L
59 model.set_md2(500 * 500 * UnitMatrix); // 2L
60 model.set_mu2(500 * 500 * UnitMatrix); // 2L
61 model.set_me2(500 * 500 * UnitMatrix); // 1L(smuon)/2L
62 model.set_Au(2,2,0); // 2L
63 model.set_Ad(2,2,0); // 2L
64 model.set_Ae(2,2,0); // 2L
65 model.set_MA0(1500); // 2L
66 model.set_scale(454.7); // 2L
67
68 return model;
69}
70
71int main()
72{
73 const double tanb_start = 2.;
74 const double tanb_stop = 100.;
75 const unsigned nsteps = 100;
76
77 printf("# %14s %16s %16s %16s\n",
78 "tan(beta)", "amu", "uncertainty", "error");
79
80 for (unsigned n = 0; n < nsteps; n++) {
81 double amu{0.0}, delta_amu{0.0};
82 const double tanb = tanb_start + (tanb_stop - tanb_start) * n / nsteps;
83 std::string error;
84
86 model.set_TB(tanb);
87
88 try {
89 model.calculate_masses();
93 } catch (const gm2calc::Error& e) {
94 error = "# " + std::string(e.what());
95 amu = delta_amu = std::numeric_limits<double>::signaling_NaN();
96 }
97
98 printf("%16.8e %16.8e %16.8e %s\n",
99 tanb, amu, delta_amu, error.c_str());
100 }
101
102 return 0;
103}
const MSSMNoFV_onshell_physical & get_physical() const
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 calculate_masses()
calculate SUSY masses in mixed on-shell/DR-bar scheme from given on-shell/DR-bar parameters
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 set_alpha_MZ(double)
set alpha(MZ) w/o hadronic corrections
void set_MA0(double m)
set CP-odd Higgs pole mass
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 tanb
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