GM2Calc 2.3.0
Loading...
Searching...
No Matches
MSSMNoFV_onshell_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
21#include "gm2calc/gm2_error.hpp"
22
23#include "gm2_log.hpp"
24
25#include <complex>
26#include <string>
27#include <iostream>
28
29/**
30 * @file MSSMNoFV_onshell_c.cpp
31 * @brief contains definitions of C interface functions for the model
32 *
33 * This file contains the definitions for the C interface functions
34 * used to set and retrieve the model parameters and masses.
35 */
36
37extern "C"
38{
39
40/**
41 * @brief Allocate a new MSSMNoFV model.
42 *
43 * This function allocates a new MSSMNoFV model and returns a pointer
44 * to the created object. To prevent a resource leak, the model
45 * should be destroyed using gm2calc_mssmnofv_free() .
46 *
47 * @return pointer to model object
48 */
53
54/**
55 * @brief Deletes a MSSMNoFV model.
56 *
57 * This function deletes a MSSMNoFV model object, which has been
58 * created using gm2calc_mssmnofv_new() .
59 *
60 * @param model pointer to model object
61 */
63{
64 delete reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model);
65}
66
68{
69 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_alpha_MZ(alpha_MZ);
70}
71
73{
74 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_alpha_thompson(alpha_0);
75}
76
77void gm2calc_mssmnofv_set_Ae(MSSMNoFV_onshell* model, unsigned i, unsigned k, double a)
78{
79 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_Ae(i,k,a);
80}
81
82void gm2calc_mssmnofv_set_Au(MSSMNoFV_onshell* model, unsigned i, unsigned k, double a)
83{
84 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_Au(i,k,a);
85}
86
87void gm2calc_mssmnofv_set_Ad(MSSMNoFV_onshell* model, unsigned i, unsigned k, double a)
88{
89 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_Ad(i,k,a);
90}
91
93{
94 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_g3(g3);
95}
96
98{
99 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_MassB(mass_b);
100}
101
103{
104 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_MassWB(mass_wb);
105}
106
108{
109 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_MassG(mass_g);
110}
111
112void gm2calc_mssmnofv_set_mq2(MSSMNoFV_onshell* model, unsigned i, unsigned k, double mq2)
113{
114 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_mq2(i,k,mq2);
115}
116
117void gm2calc_mssmnofv_set_mu2(MSSMNoFV_onshell* model, unsigned i, unsigned k, double mu2)
118{
119 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_mu2(i,k,mu2);
120}
121
122void gm2calc_mssmnofv_set_md2(MSSMNoFV_onshell* model, unsigned i, unsigned k, double md2)
123{
124 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_md2(i,k,md2);
125}
126
127void gm2calc_mssmnofv_set_ml2(MSSMNoFV_onshell* model, unsigned i, unsigned k, double ml2)
128{
129 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_ml2(i,k,ml2);
130}
131
132void gm2calc_mssmnofv_set_me2(MSSMNoFV_onshell* model, unsigned i, unsigned k, double me2)
133{
134 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_me2(i,k,me2);
135}
136
138{
139 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_Mu(mu);
140}
141
142void gm2calc_mssmnofv_set_TB(MSSMNoFV_onshell* model, double tan_beta)
143{
144 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_TB(tan_beta);
145}
146
148{
149 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_scale(scale);
150}
151
153{
154 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_MA0(MA0);
155}
156
158{
159 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MVZ = MZ;
160}
161
163{
164 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MVWm = MW;
165}
166
168{
169 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MFt = MFt;
170}
171
173{
174 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MFb = MFb;
175}
176
178{
179 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MFtau = MFtau;
180}
181
183{
184 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MFm = MFm;
185}
186
187void gm2calc_mssmnofv_set_MSm_pole(MSSMNoFV_onshell* model, unsigned i, double MSm)
188{
189 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MSm(i) = MSm;
190}
191
193{
194 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MSvmL = MSvmL;
195}
196
197void gm2calc_mssmnofv_set_MCha_pole(MSSMNoFV_onshell* model, unsigned i, double MCha)
198{
199 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MCha(i) = MCha;
200}
201
202void gm2calc_mssmnofv_set_MChi_pole(MSSMNoFV_onshell* model, unsigned i, double MChi)
203{
204 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_physical().MChi(i) = MChi;
205}
206
208{
209 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->set_verbose_output(verbose_output != 0);
210}
211
212double gm2calc_mssmnofv_get_Ae(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
213{
214 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Ae(i,k);
215}
216
217double gm2calc_mssmnofv_get_Ad(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
218{
219 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Ad(i,k);
220}
221
222double gm2calc_mssmnofv_get_Au(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
223{
224 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Au(i,k);
225}
226
228{
229 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_EL();
230}
231
233{
234 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_EL0();
235}
236
238{
239 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_gY();
240}
241
243{
244 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_g1();
245}
246
248{
249 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_g2();
250}
251
253{
254 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_g3();
255}
256
258{
259 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_TB();
260}
261
263{
264 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MassB();
265}
266
268{
269 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MassWB();
270}
271
273{
274 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MassG();
275}
276
278{
279 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Mu();
280}
281
282double gm2calc_mssmnofv_get_mq2(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
283{
284 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_mq2(i,k);
285}
286
287double gm2calc_mssmnofv_get_md2(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
288{
289 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_md2(i,k);
290}
291
292double gm2calc_mssmnofv_get_mu2(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
293{
294 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_mu2(i,k);
295}
296
297double gm2calc_mssmnofv_get_ml2(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
298{
299 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ml2(i,k);
300}
301
302double gm2calc_mssmnofv_get_me2(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
303{
304 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_me2(i,k);
305}
306
308{
309 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_scale();
310}
311
313{
314 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_vev();
315}
316
318{
319 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MW();
320}
321
323{
324 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MZ();
325}
326
328{
329 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ME();
330}
331
333{
334 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MM();
335}
336
338{
339 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ML();
340}
341
343{
344 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MU();
345}
346
348{
349 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MC();
350}
351
353{
354 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MT();
355}
356
358{
359 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MD();
360}
361
363{
364 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MS();
365}
366
368{
369 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MB();
370}
371
373{
374 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MBMB();
375}
376
378{
379 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MAh(1);
380}
381
382double gm2calc_mssmnofv_get_Mhh(const MSSMNoFV_onshell* model, unsigned i)
383{
384 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Mhh(i);
385}
386
387double gm2calc_mssmnofv_get_MCha(const MSSMNoFV_onshell* model, unsigned i)
388{
389 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MCha(i);
390}
391
392double gm2calc_mssmnofv_get_UM(const MSSMNoFV_onshell* model, unsigned i, unsigned j, double* u_imag)
393{
394 const std::complex<double> U_ij =
395 reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_UM(i,j);
396
397 if (u_imag != nullptr) {
398 *u_imag = std::imag(U_ij);
399 }
400
401 return std::real(U_ij);
402}
403
404double gm2calc_mssmnofv_get_UP(const MSSMNoFV_onshell* model, unsigned i, unsigned j, double* u_imag)
405{
406 const std::complex<double> U_ij =
407 reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_UP(i,j);
408
409 if (u_imag != nullptr) {
410 *u_imag = std::imag(U_ij);
411 }
412
413 return std::real(U_ij);
414}
415
416double gm2calc_mssmnofv_get_MChi(const MSSMNoFV_onshell* model, unsigned i)
417{
418 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MChi(i);
419}
420
421double gm2calc_mssmnofv_get_ZN(const MSSMNoFV_onshell* model, unsigned i, unsigned j, double* u_imag)
422{
423 const std::complex<double> U_ij =
424 reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZN(i,j);
425
426 if (u_imag != nullptr) {
427 *u_imag = std::imag(U_ij);
428 }
429
430 return std::real(U_ij);
431}
432
433double gm2calc_mssmnofv_get_MSe(const MSSMNoFV_onshell* model, unsigned i)
434{
435 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSe(i);
436}
437
439{
440 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSveL();
441}
442
443double gm2calc_mssmnofv_get_MSm(const MSSMNoFV_onshell* model, unsigned i)
444{
445 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSm(i);
446}
447
449{
450 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSvmL();
451}
452
453double gm2calc_mssmnofv_get_MStau(const MSSMNoFV_onshell* model, unsigned i)
454{
455 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MStau(i);
456}
457
459{
460 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSvtL();
461}
462
463double gm2calc_mssmnofv_get_MSu(const MSSMNoFV_onshell* model, unsigned i)
464{
465 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSu(i);
466}
467
468double gm2calc_mssmnofv_get_MSd(const MSSMNoFV_onshell* model, unsigned i)
469{
470 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSd(i);
471}
472
473double gm2calc_mssmnofv_get_MSc(const MSSMNoFV_onshell* model, unsigned i)
474{
475 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSc(i);
476}
477
478double gm2calc_mssmnofv_get_MSs(const MSSMNoFV_onshell* model, unsigned i)
479{
480 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSs(i);
481}
482
483double gm2calc_mssmnofv_get_MSt(const MSSMNoFV_onshell* model, unsigned i)
484{
485 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSt(i);
486}
487
488double gm2calc_mssmnofv_get_MSb(const MSSMNoFV_onshell* model, unsigned i)
489{
490 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_MSb(i);
491}
492
493double gm2calc_mssmnofv_get_USe(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
494{
495 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZE(i,j);
496}
497
498double gm2calc_mssmnofv_get_USm(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
499{
500 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZM(i,j);
501}
502
503double gm2calc_mssmnofv_get_UStau(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
504{
505 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZTau(i,j);
506}
507
508double gm2calc_mssmnofv_get_USu(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
509{
510 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZU(i,j);
511}
512
513double gm2calc_mssmnofv_get_USd(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
514{
515 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZD(i,j);
516}
517
518double gm2calc_mssmnofv_get_USc(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
519{
520 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZC(i,j);
521}
522
523double gm2calc_mssmnofv_get_USs(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
524{
525 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZS(i,j);
526}
527
528double gm2calc_mssmnofv_get_USt(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
529{
530 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZT(i,j);
531}
532
533double gm2calc_mssmnofv_get_USb(const MSSMNoFV_onshell* model, unsigned i, unsigned j)
534{
535 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_ZB(i,j);
536}
537
538double gm2calc_mssmnofv_get_Ye(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
539{
540 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Ye(i,k);
541}
542
543double gm2calc_mssmnofv_get_Yd(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
544{
545 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Yd(i,k);
546}
547
548double gm2calc_mssmnofv_get_Yu(const MSSMNoFV_onshell* model, unsigned i, unsigned k)
549{
550 return reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model)->get_Yu(i,k);
551}
552
553/**
554 * This function converts the model parameters to a mixed
555 * on-shell/DR-bar scheme, used to calculate \f$a_\mu\f$. The
556 * function uses default values for the conversion precision goal and
557 * the maximum number of iterations.
558 *
559 * @param model pointer to model object
560 *
561 * @return error code gm2calc_error
562 */
564{
566
567 try {
568 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->convert_to_onshell();
569 } catch (const gm2calc::EInvalidInput&) {
570 error = gm2calc_InvalidInput;
571 } catch (const gm2calc::EPhysicalProblem&) {
573 } catch (...) {
574 error = gm2calc_UnknownError;
575 }
576
577 return error;
578}
579
580/**
581 * This function converts the model parameters to a mixed
582 * on-shell/DR-bar scheme, used to calculate \f$a_\mu\f$.
583 *
584 * @param model pointer to model object
585 * @param precision precision goal of the conversion
586 * @param max_iterations maximum number of iterations
587 *
588 * @return error code gm2calc_error
589 */
591 MSSMNoFV_onshell* model, double precision, unsigned max_iterations)
592{
594
595 try {
596 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->convert_to_onshell(precision, max_iterations);
597 } catch (const gm2calc::EInvalidInput&) {
598 error = gm2calc_InvalidInput;
599 } catch (const gm2calc::EPhysicalProblem&) {
601 } catch (...) {
602 error = gm2calc_UnknownError;
603 }
604
605 return error;
606}
607
608/**
609 * This function calculates the masses of the particles in the model.
610 *
611 * @param model pointer to model object
612 *
613 * @return error code gm2calc_error
614 */
616{
618
619 try {
620 reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->calculate_masses();
621 } catch (const gm2calc::EInvalidInput&) {
622 error = gm2calc_InvalidInput;
623 } catch (const gm2calc::EPhysicalProblem&) {
625 } catch (...) {
626 error = gm2calc_UnknownError;
627 }
628
629 return error;
630}
631
632/**
633 * Returns true if there are problems
634 *
635 * @param model pointer to model object
636 *
637 * @return true if there are problems, false otherwise
638 */
640{
641 return static_cast<int>(reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_problems().have_problem());
642}
643
644/**
645 * Returns true if there are warnings
646 *
647 * @param model pointer to model object
648 *
649 * @return true if there are warnings, false otherwise
650 */
652{
653 return static_cast<int>(reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_problems().have_warning());
654}
655
656/**
657 * Fills string with problem descriptions
658 *
659 * @param model pointer to model object
660 * @param msg buffer for message string
661 * @param len available length of message string
662 *
663 */
664void gm2calc_mssmnofv_get_problems(MSSMNoFV_onshell* model, char* msg, unsigned len)
665{
666 if (msg == nullptr) {
667 return;
668 }
669
670 const std::string str(reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_problems().get_problems());
671 msg[str.copy(msg, len - 1)] = '\0';
672}
673
674/**
675 * Fills string with warning descriptions
676 *
677 * @param model pointer to model object
678 * @param msg buffer for message string
679 * @param len available length of message string
680 *
681 */
682void gm2calc_mssmnofv_get_warnings(MSSMNoFV_onshell* model, char* msg, unsigned len)
683{
684 if (msg == nullptr) {
685 return;
686 }
687
688 const std::string str(reinterpret_cast<gm2calc::MSSMNoFV_onshell*>(model)->get_problems().get_warnings());
689 msg[str.copy(msg, len - 1)] = '\0';
690}
691
693{
694 VERBOSE(*reinterpret_cast<const gm2calc::MSSMNoFV_onshell*>(model));
695}
696
697} // extern "C"
contains declarations of C interface functions for the model
double gm2calc_mssmnofv_get_UStau(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get stau mixing matrix
double gm2calc_mssmnofv_get_MZ(const MSSMNoFV_onshell *model)
get Z boson pole mass
gm2calc_error gm2calc_mssmnofv_convert_to_onshell_params(MSSMNoFV_onshell *model, double precision, unsigned max_iterations)
This function converts the model parameters to a mixed on-shell/DR-bar scheme, used to calculate .
double gm2calc_mssmnofv_get_Mhh(const MSSMNoFV_onshell *model, unsigned i)
get CP-even Higgs masses
double gm2calc_mssmnofv_get_ZN(const MSSMNoFV_onshell *model, unsigned i, unsigned j, double *u_imag)
get neutralino pole mixing matrix
double gm2calc_mssmnofv_get_MSveL(const MSSMNoFV_onshell *model)
get electron sneutrino mass
void gm2calc_mssmnofv_set_alpha_thompson(MSSMNoFV_onshell *model, double alpha_0)
set alpha_em(0) in the Thomson limit
double gm2calc_mssmnofv_get_MassG(const MSSMNoFV_onshell *model)
get soft-breaking gluino mass parameter
double gm2calc_mssmnofv_get_MSs(const MSSMNoFV_onshell *model, unsigned i)
get sstrange masses
void gm2calc_mssmnofv_set_me2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double me2)
set soft-breaking squared mass parameter me2(i,k)
double gm2calc_mssmnofv_get_MT(const MSSMNoFV_onshell *model)
get top-quark mass
void gm2calc_mssmnofv_set_verbose_output(MSSMNoFV_onshell *model, int verbose_output)
enable/disable verbose output
double gm2calc_mssmnofv_get_Ae(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get Ae(i,k) DR-bar
double gm2calc_mssmnofv_get_Mu(const MSSMNoFV_onshell *model)
get on-shell superpotential mu parameter
double gm2calc_mssmnofv_get_g3(const MSSMNoFV_onshell *model)
get strong gauge coupling
double gm2calc_mssmnofv_get_EL(const MSSMNoFV_onshell *model)
get electromagnetic gauge coupling at MZ w/o hadronic corrections
double gm2calc_mssmnofv_get_MU(const MSSMNoFV_onshell *model)
get up-quark mass
double gm2calc_mssmnofv_get_mq2(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get left-handed up-Squark soft-breaking squared mass
void gm2calc_mssmnofv_set_MSvmL_pole(MSSMNoFV_onshell *model, double MSvmL)
set muon sneutrino pole masses
double gm2calc_mssmnofv_get_ME(const MSSMNoFV_onshell *model)
get electron mass
int gm2calc_mssmnofv_have_warning(MSSMNoFV_onshell *model)
Returns true if there are warnings.
double gm2calc_mssmnofv_get_MSd(const MSSMNoFV_onshell *model, unsigned i)
get sdown masses
double gm2calc_mssmnofv_get_MSvmL(const MSSMNoFV_onshell *model)
get muon sneutrino pole mass
void gm2calc_mssmnofv_get_problems(MSSMNoFV_onshell *model, char *msg, unsigned len)
Fills string with problem descriptions.
double gm2calc_mssmnofv_get_vev(const MSSMNoFV_onshell *model)
get vacuum expectation value
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
double gm2calc_mssmnofv_get_MM(const MSSMNoFV_onshell *model)
get muon 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)
double gm2calc_mssmnofv_get_USm(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get smuon pole mixing matrix
double gm2calc_mssmnofv_get_MB(const MSSMNoFV_onshell *model)
get bottom-quark DR-bar mass mb(MZ)
double gm2calc_mssmnofv_get_MSm(const MSSMNoFV_onshell *model, unsigned i)
get smuon pole masses
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
double gm2calc_mssmnofv_get_ml2(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get left-handed up-lepton soft-breaking on-shell squared mass
double gm2calc_mssmnofv_get_UP(const MSSMNoFV_onshell *model, unsigned i, unsigned j, double *u_imag)
get chargino pole mixing matrix
double gm2calc_mssmnofv_get_USs(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get sstrange mixing matrix
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)
double gm2calc_mssmnofv_get_MCha(const MSSMNoFV_onshell *model, unsigned i)
get chargino pole masses
double gm2calc_mssmnofv_get_USu(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get sup mixing matrix
double gm2calc_mssmnofv_get_MAh(const MSSMNoFV_onshell *model)
get CP-odd Higgs mass
double gm2calc_mssmnofv_get_scale(const MSSMNoFV_onshell *model)
get renormalization scale
double gm2calc_mssmnofv_get_Yd(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get down-quark Yukawa coupling
double gm2calc_mssmnofv_get_UM(const MSSMNoFV_onshell *model, unsigned i, unsigned j, double *u_imag)
get chargino pole mixing matrix
void gm2calc_mssmnofv_set_MCha_pole(MSSMNoFV_onshell *model, unsigned i, double MCha)
set chargino pole masses
double gm2calc_mssmnofv_get_MSb(const MSSMNoFV_onshell *model, unsigned i)
get sbottom mass
double gm2calc_mssmnofv_get_MBMB(const MSSMNoFV_onshell *model)
get bottom-quark MS-bar mass mb(mb)
double gm2calc_mssmnofv_get_md2(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get right-handed down-Squark soft-breaking squared mass
double gm2calc_mssmnofv_get_Ad(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get Ad(i,k)
void gm2calc_mssmnofv_set_MChi_pole(MSSMNoFV_onshell *model, unsigned i, double MChi)
set neutralino pole masses
double gm2calc_mssmnofv_get_MSu(const MSSMNoFV_onshell *model, unsigned i)
get sup masses
double gm2calc_mssmnofv_get_MD(const MSSMNoFV_onshell *model)
get down-quark mass
void gm2calc_mssmnofv_set_ml2(MSSMNoFV_onshell *model, unsigned i, unsigned k, double ml2)
set soft-breaking squared mass parameter ml2(i,k)
double gm2calc_mssmnofv_get_Au(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get Au(i,k)
void gm2calc_mssmnofv_set_MassG(MSSMNoFV_onshell *model, double mass_g)
set gluino mass
double gm2calc_mssmnofv_get_EL0(const MSSMNoFV_onshell *model)
get electromagnetic gauge coupling in Thomson limit
double gm2calc_mssmnofv_get_gY(const MSSMNoFV_onshell *model)
get Hypercharge gauge coupling (not GUT normalized)
double gm2calc_mssmnofv_get_mu2(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get right-handed up-Squark soft-breaking squared 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.
double gm2calc_mssmnofv_get_MChi(const MSSMNoFV_onshell *model, unsigned i)
get neutralino pole masses
void gm2calc_mssmnofv_get_warnings(MSSMNoFV_onshell *model, char *msg, unsigned len)
Fills string with warning descriptions.
double gm2calc_mssmnofv_get_ML(const MSSMNoFV_onshell *model)
get tau mass
void gm2calc_mssmnofv_set_MT_pole(MSSMNoFV_onshell *model, double MFt)
set top-quark pole mass
double gm2calc_mssmnofv_get_USe(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get selectron mixing matrix
double gm2calc_mssmnofv_get_USb(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get sbottom mixing matrix
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)
double gm2calc_mssmnofv_get_me2(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get right-handed down-lepton soft-breaking on-shell squared mass
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)
double gm2calc_mssmnofv_get_MStau(const MSSMNoFV_onshell *model, unsigned i)
get stau masses
double gm2calc_mssmnofv_get_MSc(const MSSMNoFV_onshell *model, unsigned i)
get scharm masses
double gm2calc_mssmnofv_get_USd(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get sdown mixing matrix
double gm2calc_mssmnofv_get_MSe(const MSSMNoFV_onshell *model, unsigned i)
get selectron masses
double gm2calc_mssmnofv_get_MC(const MSSMNoFV_onshell *model)
get charm-quark mass
void gm2calc_mssmnofv_set_MAh_pole(MSSMNoFV_onshell *model, double MA0)
set CP-odd Higgs pole mass
double gm2calc_mssmnofv_get_MassB(const MSSMNoFV_onshell *model)
get soft-breaking on-shell bino mass parameter
void gm2calc_mssmnofv_set_alpha_MZ(MSSMNoFV_onshell *model, double alpha_MZ)
set alpha_em(MZ)
double gm2calc_mssmnofv_get_Yu(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get up-quark Yukawa coupling
double gm2calc_mssmnofv_get_MS(const MSSMNoFV_onshell *model)
get strange-quark mass
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
double gm2calc_mssmnofv_get_MW(const MSSMNoFV_onshell *model)
get W boson pole mass
double gm2calc_mssmnofv_get_TB(const MSSMNoFV_onshell *model)
get tan(beta)
void gm2calc_mssmnofv_set_MassB(MSSMNoFV_onshell *model, double mass_b)
set bino mass
double gm2calc_mssmnofv_get_MSvtL(const MSSMNoFV_onshell *model)
get tau sneutrino mass
double gm2calc_mssmnofv_get_USt(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get sstop mixing matrix
int gm2calc_mssmnofv_have_problem(MSSMNoFV_onshell *model)
Returns true if there are problems.
void print_mssmnofv(const MSSMNoFV_onshell *model)
print model
double gm2calc_mssmnofv_get_MassWB(const MSSMNoFV_onshell *model)
get soft-breaking on-shell wino mass parameter
double gm2calc_mssmnofv_get_g2(const MSSMNoFV_onshell *model)
get left gauge coupling
double gm2calc_mssmnofv_get_USc(const MSSMNoFV_onshell *model, unsigned i, unsigned j)
get scharm mixing matrix
double gm2calc_mssmnofv_get_Ye(const MSSMNoFV_onshell *model, unsigned i, unsigned k)
get lepton Yukawa coupling
void gm2calc_mssmnofv_set_TB(MSSMNoFV_onshell *model, double tan_beta)
set tan(beta)
double gm2calc_mssmnofv_get_g1(const MSSMNoFV_onshell *model)
get Hypercharge gauge coupling (GUT normalized)
double gm2calc_mssmnofv_get_MSt(const MSSMNoFV_onshell *model, unsigned i)
get stop masses
contains the MSSMNoFV parameters in the on-shell scheme
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 VERBOSE(message)
Definition gm2_log.hpp:27
double mu
double alpha_MZ
struct MSSMNoFV_onshell MSSMNoFV_onshell