GM2Calc 2.3.0
Loading...
Searching...
No Matches
example-thdm_c.c
Go to the documentation of this file.
1#include "gm2calc/gm2_1loop.h"
2#include "gm2calc/gm2_2loop.h"
4#include "gm2calc/THDM.h"
5#include "gm2calc/SM.h"
6
7#include <stdio.h>
8
9int main()
10{
11 const gm2calc_THDM_mass_basis basis = {
13 .mh = 125,
14 .mH = 400,
15 .mA = 420,
16 .mHp = 440,
17 .sin_beta_minus_alpha = 0.999,
18 .lambda_6 = 0,
19 .lambda_7 = 0,
20 .tan_beta = 3,
21 .m122 = 40000,
22 .zeta_u = 0,
23 .zeta_d = 0,
24 .zeta_l = 0,
25 .Delta_u = { {0,0,0}, {0,0,0}, {0,0,0} },
26 .Delta_d = { {0,0,0}, {0,0,0}, {0,0,0} },
27 .Delta_l = { {0,0,0}, {0,0,0}, {0,0,0} },
28 .Pi_u = { {0,0,0}, {0,0,0}, {0,0,0} },
29 .Pi_d = { {0,0,0}, {0,0,0}, {0,0,0} },
30 .Pi_l = { {0,0,0}, {0,0,0}, {0,0,0} }
31 };
32
33 gm2calc_SM sm;
35 sm.alpha_em_mz = 1.0/128.94579;
36 sm.mu[2] = 173.34;
37 sm.mu[1] = 1.28;
38 sm.md[2] = 4.18;
39 sm.ml[2] = 1.77684;
40
43
44 gm2calc_THDM* model = 0;
45 gm2calc_error error = gm2calc_thdm_new_with_mass_basis(&model, &basis, &sm, &config);
46
47 if (error == gm2calc_NoError) {
48 const double amu = gm2calc_thdm_calculate_amu_1loop(model)
50
51 const double delta_amu =
53
54 printf("amu = %g +- %g\n", amu, delta_amu);
55 } else {
56 printf("Error: %s\n", gm2calc_error_str(error));
57 }
58
59 gm2calc_thdm_free(model);
60
61 return 0;
62}
contains declarations of C interface functions for the SM
void gm2calc_sm_set_to_default(gm2calc_SM *sm)
Set SM prameters to default values.
Definition SM_c.cpp:29
double gm2calc_thdm_calculate_amu_1loop(const gm2calc_THDM *model)
calculates full 1-loop BSM contributions to (g-2) in the THDM
double gm2calc_thdm_calculate_amu_2loop(const gm2calc_THDM *model)
calculates 2-loop contributions to a_mu in the general THDM
double gm2calc_thdm_calculate_uncertainty_amu_2loop(const gm2calc_THDM *model)
calculates uncertainty for amu(2-loop) in the general THDM
contains declarations of C interface functions for the model
@ gm2calc_THDM_type_2
Definition THDM.h:53
gm2calc_error gm2calc_thdm_new_with_mass_basis(gm2calc_THDM **model, const gm2calc_THDM_mass_basis *basis, const ::gm2calc_SM *sm, const gm2calc_THDM_config *config)
Allocate a new general THDM model with physical basis input.
Definition THDM_c.cpp:241
void gm2calc_thdm_config_set_to_default(gm2calc_THDM_config *config)
Sets configuration options to default values.
Definition THDM_c.cpp:178
void gm2calc_thdm_free(gm2calc_THDM *model)
Deletes a general THDM model.
Definition THDM_c.cpp:279
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 gm2calc_THDM gm2calc_THDM
double md[3]
Definition SM.h:42
double mu[3]
Definition SM.h:41
double ml[3]
Definition SM.h:44
double alpha_em_mz
Definition SM.h:36
THDM configuration options.
Definition THDM.h:37
general THDM physical basis input
Definition THDM.h:82
gm2calc_THDM_yukawa_type yukawa_type
Definition THDM.h:83