GM2Calc 2.3.0
Loading...
Searching...
No Matches
example_gm2scan.py.in
Go to the documentation of this file.
1#!/usr/bin/env python
2
3# ====================================================================
4# This file is part of GM2Calc.
5#
6# GM2Calc is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published
8# by the Free Software Foundation, either version 3 of the License,
9# or (at your option) any later version.
10#
11# GM2Calc is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with GM2Calc. If not, see
18# <http://www.gnu.org/licenses/>.
19# ====================================================================
20
21from __future__ import print_function
22from gm2_python_interface import *
23
24cppyy.include(os.path.join("gm2calc","gm2_1loop.hpp"))
25cppyy.include(os.path.join("gm2calc","gm2_2loop.hpp"))
26cppyy.include(os.path.join("gm2calc","gm2_uncertainty.hpp"))
27cppyy.include(os.path.join("gm2calc","gm2_error.hpp"))
28cppyy.include(os.path.join("gm2calc","MSSMNoFV_onshell.hpp"))
29
30cppyy.load_library("libgm2calc")
31
32# Load data types
33from cppyy.gbl import std
34from cppyy.gbl import gm2calc
35from cppyy.gbl.gm2calc import Error
36
37def setup():
38 # load data types
39 from cppyy.gbl import Eigen
40 # Shorten class call name
41 from cppyy.gbl.Eigen import Matrix3d
42
43 model = gm2calc.MSSMNoFV_onshell()
44
45 Pi = 3.141592653589793
46 # Outer Matrix3cd is to convert type from CwiseNullaryOp to Matrix
47 UnitMatrix = Matrix3d(Matrix3d().Identity())
48 # __mul__ is not defined for Matrix type
49 UnitMatrix.__imul__(500*500)
50
51 # fill SM parameters
52 model.set_alpha_MZ(0.0077552) # 1L
53 model.set_alpha_thompson(0.00729735) # 2L
54 model.set_g3(std.sqrt(4. * Pi * 0.1184)) # 2L
55 model.get_physical().MFt = 173.34 # 2L
56 model.get_physical().MFb = 4.18 # 2L, mb(mb) MS-bar
57 model.get_physical().MFm = 0.1056583715 # 1L
58 model.get_physical().MFtau = 1.777 # 2L
59 model.get_physical().MVWm = 80.385 # 1L
60 model.get_physical().MVZ = 91.1876 # 1L
61
62 # fill DR-bar parameters
63 model.set_TB(10) # 1L
64 model.set_Ae(1,1,0) # 1L
65
66 # fill on-shell parameters
67 model.set_Mu(350) # 1L
68 model.set_MassB(150) # 1L
69 model.set_MassWB(300) # 1L
70 model.set_MassG(1000) # 2L
71 model.set_mq2(UnitMatrix) # 2L
72 model.set_ml2(UnitMatrix) # 1L(smuon)/2L
73 model.set_md2(UnitMatrix) # 2L
74 model.set_mu2(UnitMatrix) # 2L
75 model.set_me2(UnitMatrix) # 1L(smuon)/2L
76 model.set_Au(2,2,0) # 2L
77 model.set_Ad(2,2,0) # 2L
78 model.set_Ae(2,2,0) # 2L
79 model.set_MA0(1500) # 2L
80 model.set_scale(454.7) # 2L
81
82 return model;
83
84tanb_start = 2.
85tanb_stop = 100.
86nsteps = 100
87string = ["tan(beta)","amu","uncertainty","error"]
88print("# {0:>14s} {1:>16s} {2:>16s} {3:>16s}".format(*string))
89for n in range(0,nsteps):
90 amu = 0.
91 delta_amu = 0.
92 tanb = tanb_start + (tanb_stop - tanb_start) * n / nsteps
93 error = std.string()
94
95 model = setup()
96 model.set_TB(tanb)
97
98 try:
99 model.calculate_masses()
100 amu = gm2calc.calculate_amu_1loop(model) + gm2calc.calculate_amu_2loop(model)
101 delta_amu = gm2calc.calculate_uncertainty_amu_2loop(model)
102 except gm2calc.Error as e:
103 error = "# " + str(e.what())
104 amu = std.numeric_limits['double'].signaling_NaN()
105 delta_amu = std.numeric_limits['double'].signaling_NaN()
106
107 print("{0:>16.8e} {1:>16.8e} {2:>16.8e}".format(tanb,amu,delta_amu)+error.c_str())
108