GM2Calc 2.3.0
Loading...
Searching...
No Matches
THDM_c.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/THDM.h"
20#include "gm2calc/THDM.hpp"
21#include "gm2calc/gm2_error.hpp"
22#include "gm2calc/SM.h"
23#include "gm2_log.hpp"
24
25#include <complex>
26
27namespace gm2calc {
28namespace {
29
31{
32 return static_cast<gm2calc::thdm::Yukawa_type>(yukawa_type);
33}
34
36{
38
39 if (config != nullptr) {
40 c.force_output = config->force_output != 0;
41 c.running_couplings = config->running_couplings != 0;
42 }
43
44 return c;
45}
46
47gm2calc::SM convert_to_SM(const ::gm2calc_SM* sm)
48{
50
51 if (sm != nullptr) {
52 s.set_alpha_em_0(sm->alpha_em_0);
53 s.set_alpha_em_mz(sm->alpha_em_mz);
54 s.set_alpha_s_mz(sm->alpha_s_mz);
55 s.set_mh(sm->mh);
56 s.set_mw(sm->mw);
57 s.set_mz(sm->mz);
58 for (int i = 0; i < 3; i++) {
59 s.set_mu(i, sm->mu[i]);
60 }
61 for (int i = 0; i < 3; i++) {
62 s.set_md(i, sm->md[i]);
63 }
64 for (int i = 0; i < 3; i++) {
65 s.set_mv(i, sm->mv[i]);
66 }
67 for (int i = 0; i < 3; i++) {
68 s.set_ml(i, sm->ml[i]);
69 }
70 Eigen::Matrix<std::complex<double>,3,3> ckm;
71 for (int i = 0; i < 3; i++) {
72 for (int k = 0; k < 3; k++) {
73 ckm(i, k) = std::complex<double>(sm->ckm_real[i][k], sm->ckm_imag[i][k]);
74 }
75 }
76 s.set_ckm(ckm);
77 }
78
79 return s;
80}
81
83{
85
86 if (basis != nullptr) {
88 for (int i = 0; i < 7; i++) {
89 b.lambda(i) = basis->lambda[i];
90 }
91 b.tan_beta = basis->tan_beta;
92 b.m122 = basis->m122;
93 b.zeta_u = basis->zeta_u;
94 b.zeta_d = basis->zeta_d;
95 b.zeta_l = basis->zeta_l;
96 for (int i = 0; i < 3; i++) {
97 for (int k = 0; k < 3; k++) {
98 b.Delta_u(i, k) = basis->Delta_u[i][k];
99 b.Delta_d(i, k) = basis->Delta_d[i][k];
100 b.Delta_l(i, k) = basis->Delta_l[i][k];
101 b.Pi_u(i, k) = basis->Pi_u[i][k];
102 b.Pi_d(i, k) = basis->Pi_d[i][k];
103 b.Pi_l(i, k) = basis->Pi_l[i][k];
104 }
105 }
106 }
107
108 return b;
109}
110
112{
114
115 if (basis != nullptr) {
117 b.mh = basis->mh;
118 b.mH = basis->mH;
119 b.mA = basis->mA;
120 b.mHp = basis->mHp;
121 b.sin_beta_minus_alpha = basis->sin_beta_minus_alpha;
122 b.lambda_6 = basis->lambda_6;
123 b.lambda_7 = basis->lambda_7;
124 b.tan_beta = basis->tan_beta;
125 b.m122 = basis->m122;
126 b.zeta_u = basis->zeta_u;
127 b.zeta_d = basis->zeta_d;
128 b.zeta_l = basis->zeta_l;
129 for (int i = 0; i < 3; i++) {
130 for (int k = 0; k < 3; k++) {
131 b.Delta_u(i, k) = basis->Delta_u[i][k];
132 b.Delta_d(i, k) = basis->Delta_d[i][k];
133 b.Delta_l(i, k) = basis->Delta_l[i][k];
134 b.Pi_u(i, k) = basis->Pi_u[i][k];
135 b.Pi_d(i, k) = basis->Pi_d[i][k];
136 b.Pi_l(i, k) = basis->Pi_l[i][k];
137 }
138 }
139 }
140
141 return b;
142}
143
144} // anonymous namespace
145} // namespace gm2calc
146
147/**
148 * @file THDM_c.cpp
149 * @brief contains definitions of C interface functions for the model
150 *
151 * This file contains the definitions for the C interface functions
152 * used to set and retrieve the model parameters and masses.
153 */
154
155extern "C"
156{
157
159{
161
162 try {
163 const auto yukawa_type_cpp = gm2calc::thdm::int_to_cpp_yukawa_type(i);
164 yukawa_type = static_cast<gm2calc_THDM_yukawa_type>(yukawa_type_cpp);
165 } catch (const gm2calc::Error& e) {
166 ERROR(e.what());
167 } catch (...) {
168 ERROR("unknown exception thrown");
169 }
170
171 return yukawa_type;
172}
173
174/**
175 * Sets configuration options to default values.
176 * @param config pointer to configuration options
177 */
179{
180 if (config != nullptr) {
182 config->force_output = static_cast<int>(cpp.force_output);
183 config->running_couplings = static_cast<int>(cpp.running_couplings);
184 }
185}
186
187/**
188 * @brief Allocate a new general THDM model with general basis input.
189 *
190 * This function allocates a new general THDM model and sets the
191 * pointer to the created object. To prevent a resource leak, the
192 * model should be destroyed using gm2calc_thdm_free() .
193 *
194 * If an error occurs, the model pointer will be set to 0 and a
195 * corresponding error code will be returned.
196 *
197 * @return error code
198 */
200 gm2calc_THDM** model, const gm2calc_THDM_gauge_basis* basis,
201 const ::gm2calc_SM* sm, const gm2calc_THDM_config* config)
202{
203 if (model == nullptr) {
205 }
206
208
209 try {
210 const auto c(gm2calc::convert_to_config(config));
211 const auto b(gm2calc::convert_to_basis(basis));
212 const auto s(gm2calc::convert_to_SM(sm));
213 *model = reinterpret_cast<gm2calc_THDM*>(new gm2calc::THDM(b, s, c));
214 error = gm2calc_NoError;
215 } catch (const gm2calc::EInvalidInput&) {
216 *model = nullptr;
217 error = gm2calc_InvalidInput;
218 } catch (const gm2calc::EPhysicalProblem&) {
219 *model = nullptr;
221 } catch (...) {
222 *model = nullptr;
223 error = gm2calc_UnknownError;
224 }
225
226 return error;
227}
228
229/**
230 * @brief Allocate a new general THDM model with physical basis input.
231 *
232 * This function allocates a new general THDM model and sets the
233 * pointer to the created object. To prevent a resource leak, the
234 * model should be destroyed using gm2calc_thdm_free() .
235 *
236 * If an error occurs, the model pointer will be set to 0 and a
237 * corresponding error code will be returned.
238 *
239 * @return error code
240 */
242 gm2calc_THDM** model, const gm2calc_THDM_mass_basis* basis,
243 const ::gm2calc_SM* sm, const gm2calc_THDM_config* config)
244{
245 if (model == nullptr) {
247 }
248
250
251 try {
252 const auto c(gm2calc::convert_to_config(config));
253 const auto b(gm2calc::convert_to_basis(basis));
254 const auto s(gm2calc::convert_to_SM(sm));
255 *model = reinterpret_cast<gm2calc_THDM*>(new gm2calc::THDM(b, s, c));
256 error = gm2calc_NoError;
257 } catch (const gm2calc::EInvalidInput&) {
258 *model = nullptr;
259 error = gm2calc_InvalidInput;
260 } catch (const gm2calc::EPhysicalProblem&) {
261 *model = nullptr;
263 } catch (...) {
264 *model = nullptr;
265 error = gm2calc_UnknownError;
266 }
267
268 return error;
269}
270
271/**
272 * @brief Deletes a general THDM model.
273 *
274 * This function deletes a general THDM model object, which has been
275 * created using gm2calc_thdm_new() .
276 *
277 * @param model pointer to model object
278 */
280{
281 delete reinterpret_cast<gm2calc::THDM*>(model);
282}
283
284} // extern "C"
contains declarations of C interface functions for the SM
contains declarations of C interface functions for the model
gm2calc_THDM_yukawa_type
Yukawa schemes.
Definition THDM.h:51
@ gm2calc_THDM_general
Definition THDM.h:57
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
gm2calc_THDM_yukawa_type int_to_c_yukawa_type(int i)
convert int to gm2calc_THDM_yukawa_type
Definition THDM_c.cpp:158
gm2calc_error gm2calc_thdm_new_with_gauge_basis(gm2calc_THDM **model, const gm2calc_THDM_gauge_basis *basis, const ::gm2calc_SM *sm, const gm2calc_THDM_config *config)
Allocate a new general THDM model with general basis input.
Definition THDM_c.cpp:199
void gm2calc_thdm_free(gm2calc_THDM *model)
Deletes a general THDM model.
Definition THDM_c.cpp:279
void set_alpha_em_0(double a) noexcept
Definition SM.hpp:32
Contains routines to determine the THDM parameters.
Definition THDM.hpp:98
gm2calc_error
error codes
Definition gm2_error.h:32
@ gm2calc_InvalidInput
Definition gm2_error.h:34
@ gm2calc_PhysicalProblem
Definition gm2_error.h:35
@ gm2calc_UnknownError
Definition gm2_error.h:36
@ gm2calc_NoError
Definition gm2_error.h:33
#define ERROR(message)
Definition gm2_log.hpp:24
struct gm2calc_THDM gm2calc_THDM
Yukawa_type int_to_cpp_yukawa_type(int yukawa_type)
convert int to thdm::Yukawa_type
Definition THDM.cpp:45
void svd_eigen(const Eigen::Matrix< Scalar, M, N > &m, Eigen::Array< Real,(((M)<(N)) ?(M) :(N)), 1 > &s, Eigen::Matrix< Scalar, M, M > *u, Eigen::Matrix< Scalar, N, N > *vh)
Configuration options for the THDM.
Definition THDM.hpp:37
bool running_couplings
use running couplings
Definition THDM.hpp:39
bool force_output
force output
Definition THDM.hpp:38
Yukawa_type yukawa_type
Definition THDM.hpp:55
Yukawa_type yukawa_type
Definition THDM.hpp:71
THDM configuration options.
Definition THDM.h:37
int running_couplings
Definition THDM.h:39
general THDM general basis input
Definition THDM.h:64
general THDM physical basis input
Definition THDM.h:82