GM2Calc 2.3.0
Loading...
Searching...
No Matches
THDM.h
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#ifndef GM2_THDM_H
20#define GM2_THDM_H
21
22/**
23 * @file THDM.h
24 * @brief contains declarations of C interface functions for the model
25 *
26 * This file contains the declarations for the C interface functions
27 * used to set and retrieve the model parameters and masses.
28 */
29
30#include "gm2calc/gm2_error.h"
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/** THDM configuration options */
42
43/** create a new config */
45
46/** general THDM handle */
47struct gm2calc_THDM;
49
50/** Yukawa schemes */
59
60/** convert int to gm2calc_THDM_yukawa_type */
62
63/** general THDM general basis input */
66 double lambda[7];
67 double tan_beta;
68 double m122;
69 double zeta_u;
70 double zeta_d;
71 double zeta_l;
72 double Delta_u[3][3];
73 double Delta_d[3][3];
74 double Delta_l[3][3];
75 double Pi_u[3][3];
76 double Pi_d[3][3];
77 double Pi_l[3][3];
78};
80
81/** general THDM physical basis input */
84 double mh;
85 double mH;
86 double mA;
87 double mHp;
89 double lambda_6;
90 double lambda_7;
91 double tan_beta;
92 double m122;
93 double zeta_u;
94 double zeta_d;
95 double zeta_l;
96 double Delta_u[3][3];
97 double Delta_d[3][3];
98 double Delta_l[3][3];
99 double Pi_u[3][3];
100 double Pi_d[3][3];
101 double Pi_l[3][3];
102};
104
105struct gm2calc_SM;
106typedef struct gm2calc_SM gm2calc_SM;
107
108/** allocate new general THDM model with general basis input */
110
111/** allocate new general THDM model with physical basis input */
113
114/** delete general THDM model */
116
117#ifdef __cplusplus
118} /* extern "C" */
119#endif
120
121#endif
gm2calc_error gm2calc_thdm_new_with_gauge_basis(gm2calc_THDM **, const gm2calc_THDM_gauge_basis *, const gm2calc_SM *, const gm2calc_THDM_config *)
allocate new general THDM model with general basis input
void gm2calc_thdm_free(gm2calc_THDM *)
delete general THDM model
Definition THDM_c.cpp:279
gm2calc_THDM_yukawa_type int_to_c_yukawa_type(int)
convert int to gm2calc_THDM_yukawa_type
Definition THDM_c.cpp:158
void gm2calc_thdm_config_set_to_default(gm2calc_THDM_config *)
create a new config
Definition THDM_c.cpp:178
gm2calc_error gm2calc_thdm_new_with_mass_basis(gm2calc_THDM **, const gm2calc_THDM_mass_basis *, const gm2calc_SM *, const gm2calc_THDM_config *)
allocate new general THDM model with physical basis input
gm2calc_THDM_yukawa_type
Yukawa schemes.
Definition THDM.h:51
@ gm2calc_THDM_type_Y
Definition THDM.h:55
@ gm2calc_THDM_type_2
Definition THDM.h:53
@ gm2calc_THDM_aligned
Definition THDM.h:56
@ gm2calc_THDM_type_X
Definition THDM.h:54
@ gm2calc_THDM_type_1
Definition THDM.h:52
@ gm2calc_THDM_general
Definition THDM.h:57
contains declarations of GM2Calc error codes for the C interface
gm2calc_error
error codes
Definition gm2_error.h:32
struct gm2calc_THDM gm2calc_THDM
THDM configuration options.
Definition THDM.h:37
int running_couplings
Definition THDM.h:39
general THDM general basis input
Definition THDM.h:64
double Pi_l[3][3]
Definition THDM.h:77
gm2calc_THDM_yukawa_type yukawa_type
Definition THDM.h:65
double Pi_u[3][3]
Definition THDM.h:75
double Delta_u[3][3]
Definition THDM.h:72
double Delta_l[3][3]
Definition THDM.h:74
double Pi_d[3][3]
Definition THDM.h:76
double Delta_d[3][3]
Definition THDM.h:73
general THDM physical basis input
Definition THDM.h:82
double sin_beta_minus_alpha
Definition THDM.h:88
double Delta_u[3][3]
Definition THDM.h:96
double Delta_l[3][3]
Definition THDM.h:98
double Pi_l[3][3]
Definition THDM.h:101
double Pi_u[3][3]
Definition THDM.h:99
gm2calc_THDM_yukawa_type yukawa_type
Definition THDM.h:83
double Delta_d[3][3]
Definition THDM.h:97
double Pi_d[3][3]
Definition THDM.h:100