GM2Calc 2.3.0
Loading...
Searching...
No Matches
example_slha.py.in
Go to the documentation of this file.
1#!/usr/bin/env python
2
3from __future__ import print_function
4from gm2_python_interface import *
5
6cppyy.include(os.path.join("gm2calc","gm2_1loop.hpp"))
7cppyy.include(os.path.join("gm2calc","gm2_2loop.hpp"))
8cppyy.include(os.path.join("gm2calc","gm2_uncertainty.hpp"))
9cppyy.include(os.path.join("gm2calc","gm2_error.hpp"))
10cppyy.include(os.path.join("gm2calc","MSSMNoFV_onshell.hpp"))
11
12cppyy.load_library("libgm2calc")
13
14# Load data types
15from cppyy.gbl import gm2calc
16from cppyy.gbl.gm2calc import Error
17
18def setup():
19 # load data types
20 from cppyy.gbl import std
21 from cppyy.gbl import Eigen
22 # Shorten class call name
23 from cppyy.gbl.Eigen import Matrix3d
24
25 model = gm2calc.MSSMNoFV_onshell()
26
27 Pi = 3.141592653589793
28 # Outer Matrix3cd is to convert type from CwiseNullaryOp to Matrix
29 UnitMatrix = Matrix3d(Matrix3d().Identity())
30 # __mul__ is not defined for Matrix type
31 UnitMatrix.__imul__(7000*7000)
32
33 # fill SM parameters
34 model.set_alpha_MZ(0.0077552) # 1L
35 model.set_alpha_thompson(0.00729735) # 2L
36 model.set_g3(std.sqrt(4. * Pi * 0.1184)) # 2L
37 model.get_physical().MFt = 173.34 # 2L
38 model.get_physical().MFb = 4.18 # 2L, mb(mb) MS-bar
39 model.get_physical().MFm = 0.1056583715 # 1L
40 model.get_physical().MFtau = 1.777 # 2L
41 model.get_physical().MVWm = 80.385 # 1L
42 model.get_physical().MVZ = 91.1876 # 1L
43
44 # fill pole masses
45 model.get_physical().MSvmL = 5.18860573e+02 # 1L
46 model.get_physical().MSm[0] = 5.05095249e+02 # 1L
47 model.get_physical().MSm[1] = 5.25187016e+02 # 1L
48 model.get_physical().MChi[0] = 2.01611468e+02 # 1L
49 model.get_physical().MChi[1] = 4.10040273e+02 # 1L
50 model.get_physical().MChi[2] = -5.16529941e+02 # 1L
51 model.get_physical().MChi[3] = 5.45628749e+02 # 1L
52 model.get_physical().MCha[0] = 4.09989890e+02 # 1L
53 model.get_physical().MCha[1] = 5.46057190e+02 # 1L
54 model.get_physical().MAh[1] = 1.50000000e+03 # 2L
55
56 # fill DR-bar parameters
57 model.set_TB(40) # 1L
58 model.set_Mu(500) # initial guess
59 model.set_MassB(200) # initial guess
60 model.set_MassWB(400) # initial guess
61 model.set_MassG(2000) # 2L
62 model.set_mq2(UnitMatrix) # 2L
63 model.set_ml2(0, 0, 500 * 500) # 2L
64 model.set_ml2(1, 1, 500 * 500) # irrelevant
65 model.set_ml2(2, 2, 500 * 500) # 2L
66 model.set_md2(UnitMatrix) # 2L
67 model.set_mu2(UnitMatrix) # 2L
68 model.set_me2(0, 0, 500 * 500) # 2L
69 model.set_me2(1, 1, 500 * 500) # initial guess
70 model.set_me2(2, 2, 500 * 500) # 2L
71 model.set_Au(2, 2, 0) # 2L
72 model.set_Ad(2, 2, 0) # 2L
73 model.set_Ae(1, 1, 0) # 1L
74 model.set_Ae(2, 2, 0) # 2L
75 model.set_scale(1000) # 2L
76
77 # convert DR-bar parameters to on-shell
78 model.convert_to_onshell()
79
80 # check for warnings
81 if model.get_problems().have_warning():
82 print(model.get_problems().get_warnings())
83
84 # check for problems
85 if model.get_problems().have_problem():
86 print(model.get_problems().get_problems())
87
88 return model
89
90
91try:
92 model = setup()
93 amu = gm2calc.calculate_amu_1loop(model) + gm2calc.calculate_amu_2loop(model)
94 delta_amu = gm2calc.calculate_uncertainty_amu_2loop(model)
95 print("amu =",amu,"+-",delta_amu)
96except gm2calc.Error as e:
97 print(e.what())
98