GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-slha_c.c
Go to the documentation of this file.
1#include "gm2calc/gm2_1loop.h"
2#include "gm2calc/gm2_2loop.h"
5
6#include <stdio.h>
7#include <stdlib.h>
8#include <math.h>
9
10void setup(MSSMNoFV_onshell* model) {
11 const double pi = 3.14159265358979323846;
12
13 /* fill SM parameters */
14 gm2calc_mssmnofv_set_alpha_MZ(model,0.0077552); /* 1L */
15 gm2calc_mssmnofv_set_alpha_thompson(model,0.00729735); /* 2L */
16 gm2calc_mssmnofv_set_g3(model,sqrt(4 * pi * 0.1184)); /* 2L */
17 gm2calc_mssmnofv_set_MT_pole(model,173.34); /* 2L */
18 gm2calc_mssmnofv_set_MB_running(model,4.18); /* 2L, mb(mb) MS-bar */
19 gm2calc_mssmnofv_set_MM_pole(model,0.1056583715); /* 1L */
20 gm2calc_mssmnofv_set_ML_pole(model,1.777); /* 2L */
21 gm2calc_mssmnofv_set_MW_pole(model,80.385); /* 1L */
22 gm2calc_mssmnofv_set_MZ_pole(model,91.1876); /* 1L */
23
24 /* fill pole masses */
25 gm2calc_mssmnofv_set_MSvmL_pole(model, 5.18860573e+02); /* 1L */
26 gm2calc_mssmnofv_set_MSm_pole(model, 0, 5.05095249e+02); /* 1L */
27 gm2calc_mssmnofv_set_MSm_pole(model, 1, 5.25187016e+02); /* 1L */
28 gm2calc_mssmnofv_set_MChi_pole(model, 0, 2.01611468e+02); /* 1L */
29 gm2calc_mssmnofv_set_MChi_pole(model, 1, 4.10040273e+02); /* 1L */
30 gm2calc_mssmnofv_set_MChi_pole(model, 2, -5.16529941e+02); /* 1L */
31 gm2calc_mssmnofv_set_MChi_pole(model, 3, 5.45628749e+02); /* 1L */
32 gm2calc_mssmnofv_set_MCha_pole(model, 0, 4.09989890e+02); /* 1L */
33 gm2calc_mssmnofv_set_MCha_pole(model, 1, 5.46057190e+02); /* 1L */
34 gm2calc_mssmnofv_set_MAh_pole(model, 1.50000000e+03); /* 2L */
35
36 /* fill DR-bar parameters */
37 gm2calc_mssmnofv_set_TB(model, 40); /* 1L */
38 gm2calc_mssmnofv_set_Mu(model, 500); /* initial guess */
39 gm2calc_mssmnofv_set_MassB(model, 200); /* initial guess */
40 gm2calc_mssmnofv_set_MassWB(model, 400); /* initial guess */
41 gm2calc_mssmnofv_set_MassG(model, 2000); /* 2L */
42 gm2calc_mssmnofv_set_ml2(model, 0, 0, 500 * 500); /* 2L */
43 gm2calc_mssmnofv_set_ml2(model, 1, 1, 500 * 500); /* irrelevant */
44 gm2calc_mssmnofv_set_ml2(model, 2, 2, 500 * 500); /* 2L */
45 gm2calc_mssmnofv_set_me2(model, 0, 0, 500 * 500); /* 2L */
46 gm2calc_mssmnofv_set_me2(model, 1, 1, 500 * 500); /* initial guess */
47 gm2calc_mssmnofv_set_me2(model, 2, 2, 500 * 500); /* 2L */
48 for (unsigned i = 0; i < 3; i++) {
49 gm2calc_mssmnofv_set_mq2(model, i, i, 7000 * 7000); /* 2L */
50 gm2calc_mssmnofv_set_md2(model, i, i, 7000 * 7000); /* 2L */
51 gm2calc_mssmnofv_set_mu2(model, i, i, 7000 * 7000); /* 2L */
52 }
53 gm2calc_mssmnofv_set_Au(model, 2, 2, 0); /* 2L */
54 gm2calc_mssmnofv_set_Ad(model, 2, 2, 0); /* 2L */
55 gm2calc_mssmnofv_set_Ae(model, 1, 1, 0); /* 1L */
56 gm2calc_mssmnofv_set_Ae(model, 2, 2, 0); /* 2L */
57 gm2calc_mssmnofv_set_scale(model, 1000); /* 2L */
58
59 /* convert DR-bar parameters to on-shell */
61
63 char warning[400];
64 gm2calc_mssmnofv_get_warnings(model, warning, sizeof(warning));
65 printf("Warning: %s\n", warning);
66 }
67
68 if (error != gm2calc_NoError) {
69 printf("Error: %s\n", gm2calc_error_str(error));
70 abort();
71 }
72}
73
74int main() {
76
77 setup(model);
78
79 const double amu =
82
83 const double delta_amu =
85
86 printf("amu = %e +- %e\n", amu, delta_amu);
87
88 /* destroy model to prevent resource leak */
90
91 return 0;
92}
double gm2calc_mssmnofv_calculate_amu_1loop(const MSSMNoFV_onshell *model)
calculates full 1-loop SUSY contributions to (g-2) in the MSSM (w/ tan(beta) resummation)
double gm2calc_mssmnofv_calculate_amu_2loop(const MSSMNoFV_onshell *model)
calculates best 2-loop SUSY contributions to a_mu in the MSSM (with tan(beta) resummation)
double gm2calc_mssmnofv_calculate_uncertainty_amu_2loop(const MSSMNoFV_onshell *model)
calculates uncertainty for amu(2-loop) in the MSSMNoFV
contains declarations of C interface functions for the model
void gm2calc_mssmnofv_set_alpha_thompson(MSSMNoFV_onshell *model, double alpha_0)
set alpha_em(0) in the Thomson limit
void gm2calc_mssmnofv_set_me2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double me2)
set soft-breaking squared mass parameter me2(i,k)
void gm2calc_mssmnofv_set_MSvmL_pole(MSSMNoFV_onshell *model, double MSvmL)
set muon sneutrino pole masses
int gm2calc_mssmnofv_have_warning(MSSMNoFV_onshell *model)
Returns true if there are warnings.
void gm2calc_mssmnofv_set_MB_running(MSSMNoFV_onshell *model, double MFb)
set MS-bar bottom-quark mass mb at the scale mb
void gm2calc_mssmnofv_set_MZ_pole(MSSMNoFV_onshell *model, double MZ)
set Z boson pole mass
void gm2calc_mssmnofv_set_Au(MSSMNoFV_onshell *model, unsigned i, unsigned k, double a)
set soft-breaking trilinear coupling Au(i,k)
gm2calc_error gm2calc_mssmnofv_convert_to_onshell(MSSMNoFV_onshell *model)
This function converts the model parameters to a mixed on-shell/DR-bar scheme, used to calculate .
void gm2calc_mssmnofv_set_MSm_pole(MSSMNoFV_onshell *model, unsigned i, double MSm)
set smuon pole masses
void gm2calc_mssmnofv_set_MW_pole(MSSMNoFV_onshell *model, double MW)
set W boson pole mass
void gm2calc_mssmnofv_set_Ae(MSSMNoFV_onshell *model, unsigned i, unsigned k, double a)
set soft-breaking trilinear coupling Ae(i,k)
void gm2calc_mssmnofv_set_ML_pole(MSSMNoFV_onshell *model, double MFtau)
set tau-lepton pole mass
void gm2calc_mssmnofv_set_g3(MSSMNoFV_onshell *model, double g3)
set gauge coupling g3
void gm2calc_mssmnofv_set_scale(MSSMNoFV_onshell *model, double scale)
set renormalization scale
void gm2calc_mssmnofv_set_mq2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double mq2)
set soft-breaking squared mass parameter mq2(i,k)
void gm2calc_mssmnofv_set_MCha_pole(MSSMNoFV_onshell *model, unsigned i, double MCha)
set chargino pole masses
void gm2calc_mssmnofv_set_MChi_pole(MSSMNoFV_onshell *model, unsigned i, double MChi)
set neutralino pole masses
void gm2calc_mssmnofv_set_ml2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double ml2)
set soft-breaking squared mass parameter ml2(i,k)
void gm2calc_mssmnofv_set_MassG(MSSMNoFV_onshell *model, double mass_g)
set gluino mass
void gm2calc_mssmnofv_set_MM_pole(MSSMNoFV_onshell *model, double MFm)
set muon pole mass
MSSMNoFV_onshell * gm2calc_mssmnofv_new()
Allocate a new MSSMNoFV model.
void gm2calc_mssmnofv_get_warnings(MSSMNoFV_onshell *model, char *msg, unsigned len)
Fills string with warning descriptions.
void gm2calc_mssmnofv_set_MT_pole(MSSMNoFV_onshell *model, double MFt)
set top-quark pole mass
void gm2calc_mssmnofv_free(MSSMNoFV_onshell *model)
Deletes a MSSMNoFV model.
void gm2calc_mssmnofv_set_md2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double md2)
set soft-breaking squared mass parameter md2(i,k)
void gm2calc_mssmnofv_set_Ad(MSSMNoFV_onshell *model, unsigned i, unsigned k, double a)
set soft-breaking trilinear coupling Ad(i,k)
void gm2calc_mssmnofv_set_mu2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double mu2)
set soft-breaking squared mass parameter mu2(i,k)
void gm2calc_mssmnofv_set_MAh_pole(MSSMNoFV_onshell *model, double MA0)
set CP-odd Higgs pole mass
void gm2calc_mssmnofv_set_alpha_MZ(MSSMNoFV_onshell *model, double alpha_MZ)
set alpha_em(MZ)
void gm2calc_mssmnofv_set_Mu(MSSMNoFV_onshell *model, double mu)
set soft-breaking squared mass parameter Mu parameter
void gm2calc_mssmnofv_set_MassWB(MSSMNoFV_onshell *model, double mass_wb)
set wino mass
void gm2calc_mssmnofv_set_MassB(MSSMNoFV_onshell *model, double mass_b)
set bino mass
void gm2calc_mssmnofv_set_TB(MSSMNoFV_onshell *model, double tan_beta)
set tan(beta)
gm2calc::MSSMNoFV_onshell setup()
int main()
contains declarations of C interface functions for 1-loop calculation
contains declarations of C interface functions for 2-loop calculation
gm2calc_error
error codes
Definition gm2_error.h:32
@ gm2calc_NoError
Definition gm2_error.h:33
const char * gm2calc_error_str(gm2calc_error error)
translate error codes into a string
struct MSSMNoFV_onshell MSSMNoFV_onshell