3from __future__ import print_function
4from gm2_python_interface import *
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"))
12cppyy.load_library("libgm2calc")
15from cppyy.gbl import gm2calc
16from cppyy.gbl.gm2calc import Error
20 from cppyy.gbl import std
21 from cppyy.gbl import Eigen
22 # Shorten class call name
23 from cppyy.gbl.Eigen import Matrix3d
25 model = gm2calc.MSSMNoFV_onshell()
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__(500*500)
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
44 # fill DR-bar parameters
46 model.set_Ae(1,1,0) # 1L
48 # fill on-shell parameters
49 model.set_Mu(350) # 1L
50 model.set_MassB(150) # 1L
51 model.set_MassWB(300) # 1L
52 model.set_MassG(1000) # 2L
53 model.set_mq2(UnitMatrix) # 2L
54 model.set_ml2(UnitMatrix) # 1L(smuon)/2L
55 model.set_md2(UnitMatrix) # 2L
56 model.set_mu2(UnitMatrix) # 2L
57 model.set_me2(UnitMatrix) # 1L(smuon)/2L
58 model.set_Au(2,2,0) # 2L
59 model.set_Ad(2,2,0) # 2L
60 model.set_Ae(2,2,0) # 2L
61 model.set_MA0(1500) # 2L
62 model.set_scale(454.7) # 2L
64 # calculate mass spectrum
65 model.calculate_masses()
72 amu = gm2calc.calculate_amu_1loop(model) + gm2calc.calculate_amu_2loop(model)
73 delta_amu = gm2calc.calculate_uncertainty_amu_2loop(model)
74 print("amu =",amu,"+-",delta_amu)
75except gm2calc.Error as e: