GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-gm2calc_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 DR-bar parameters */
25 gm2calc_mssmnofv_set_TB(model, 10); /* 1L */
26 gm2calc_mssmnofv_set_Ae(model,1,1,0); /* 1L */
27
28 /* fill on-shell parameters */
29 gm2calc_mssmnofv_set_Mu(model,350); /* 1L */
30 gm2calc_mssmnofv_set_MassB(model,150); /* 1L */
31 gm2calc_mssmnofv_set_MassWB(model,300); /* 1L */
32 gm2calc_mssmnofv_set_MassG(model,1000); /* 2L */
33 gm2calc_mssmnofv_set_Au(model,2,2,0); /* 2L */
34 gm2calc_mssmnofv_set_Ad(model,2,2,0); /* 2L */
35 gm2calc_mssmnofv_set_Ae(model,2,2,0); /* 2L */
36 gm2calc_mssmnofv_set_MAh_pole(model,1500); /* 2L */
37 gm2calc_mssmnofv_set_scale(model,454.7); /* 2L */
38
39 for (unsigned i = 0; i < 3; i++) {
40 gm2calc_mssmnofv_set_mq2(model,i,i,500*500); /* 2L */
41 gm2calc_mssmnofv_set_ml2(model,i,i,500*500); /* 1L(smuon)/2L */
42 gm2calc_mssmnofv_set_md2(model,i,i,500*500); /* 2L */
43 gm2calc_mssmnofv_set_mu2(model,i,i,500*500); /* 2L */
44 gm2calc_mssmnofv_set_me2(model,i,i,500*500); /* 1L(smuon)/2L */
45 }
46
47 /* calculate mass spectrum */
49
51 char warning[400];
52 gm2calc_mssmnofv_get_warnings(model, warning, sizeof(warning));
53 printf("Warning: %s\n", warning);
54 }
55
56 if (error != gm2calc_NoError) {
57 printf("Error: %s\n", gm2calc_error_str(error));
58 abort();
59 }
60}
61
62int main() {
64
65 setup(model);
66
67 const double amu =
70
71 const double delta_amu =
73
74 printf("amu = %e +- %e\n", amu, delta_amu);
75
76 /* destroy model to prevent resource leak */
78
79 return 0;
80}
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)
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)
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
gm2calc_error gm2calc_mssmnofv_calculate_masses(MSSMNoFV_onshell *model)
This function calculates the masses of the particles in the model.
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_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