-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintout.f
165 lines (160 loc) · 6.95 KB
/
printout.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
subroutine printout
implicit none
c
c local
c
integer i,iformat
character*2 ab(2)
real*8 ene
double precision Zero, One, Two, Three, Four, Half, Rt2
parameter( Zero = 0.0d0, One = 1.0d0, Two = 2.0d0 )
c
c include
c
include 'coupl.inc'
include 'input.inc'
c
c Common to lh_readin and printout
c
double precision alpha, gfermi, alfas
double precision mtMS,mbMS,mcMS,mtaMS!MSbar masses
double precision Vud,Vus,Vub,Vcd,Vcs,Vcb,Vtd,Vts,Vtb
c !CKM matrix elements
common/values/ alpha,gfermi,alfas,
& mtMS,mbMS,mcMS,mtaMS,
& Vud,Vus,Vub,Vcd,Vcs,Vcb,Vtd,Vts,Vtb
c
c output all info
c
10 format( 1x,a16,2x,f7.3,' GeV ',a16,2x,f7.4,' GeV' )
11 format( 1x,a13,2x,f11.5,2x,f11.5,2x,a13,2x,f11.5,2x,f11.5 )
12 format( 1x,a13,2x,f6.2,a )
13 format( 1x,a13,2x,f6.4,a )
14 format( 1x,2(a13,2x,f10.7,2x,f10.7) )
15 format( 1x,a13,2x,f9.5,a )
16 format( 1x,a13,2x,f7.5 )
17 format( 1x,a13,2x,f8.4 )
18 format( 1x,a13,2x,f8.4,' GeV' )
19 format( 1x,a13,2x,f6.4,a13,2x,f6.4 )
20 format( 1x,a13,2x,f11.5,1x,f11.5 )
21 format( 1x,a13,2x,f8.4,' GeV',1x,a13,2x,f8.4,' GeV' )
22 format( 1x,a13,2x,f10.8,a13,2x,f6.4 )
23 format( 1x,a13,2x,f8.4)
24 format( 1x,a16,2x,f9.3,' GeV ',a16,2x,f7.4,' GeV (calc @ LO)')
25 format( 1x,a16,2x,f7.3,' GeV ',a16,2x,f7.4,' GeV')
write(*,*) '*****************************************************'
write(*,*) '* MadEvent *'
write(*,*) '* -------------------------------- *'
write(*,*) '* http://madgraph.hep.uiuc.edu *'
write(*,*) '* http://madgraph.phys.ucl.ac.be *'
write(*,*) '* http://madgraph.roma2.infn.it *'
write(*,*) '* -------------------------------- *'
write(*,*) '* *'
write(*,*) '* INTEGRATION CHANNEL LOG FILE *'
write(*,*) '* *'
write(*,*) '*****************************************************'
write(6,*)
write(*,*) '*****************************************************'
write(*,*) '* SUMMARY OF THE SM PARAMETERS *'
write(*,*) '*****************************************************'
write(6,*)
write(6,*) ' EW Parameters:'
write(6,*) '---------------'
write(6,*)
write(6,23) ' GF (10^-5*GeV^-2) = ',gfermi*1d5
write(6,23) ' 1/alpha = ',1d0/alpha
write(6,23) ' M_Z (GeV) = ',zmass
write(6,*)
write(6,*)
write(6,*) 'Boson masses and widths:'
write(6,*) '------------------------'
write(6,*)
write(6,24) 'Z mass = ',zmass, 'Z width = ',zwidth
write(6,24) 'W mass = ',wmass, 'W width = ',wwidth
write(6,24) 'H mass = ',hmass, 'H width = ',hwidth
write(6,*)
write(6,*) 'Fermion masses and widths:'
write(6,*) '--------------------------'
write(6,*)
write(6,24) 'top mass = ', tmass, 'top width = ', twidth
write(6,10) 'bottom mass = ', bmass, 'bottom width = ', Zero
write(6,10) 'charm mass = ', cmass, 'charm width = ', Zero
write(6,10) 'tau mass = ', lmass, 'tau width = ', Zero
write(6,*) 'all other quark and lepton masses set to zero'
write(6,*)
write(6,*) 'User Model couplings:'
write(6,*) '---------------------'
write(6,*)
write(6,11) 'WPVUD(L) = ', WPVUD(1),'WPVUD(R) = ', WPVUD(2)
write(6,11) 'WPVCS(L) = ', WPVCS(1),'WPVCS(R) = ', WPVCS(2)
write(6,11) 'WPVTB(L) = ', WPVTB(1),'WPVTB(R) = ', WPVTB(2)
write(6,11) 'WPVCD(L) = ', WPVCD(1),'WPVCD(R) = ', WPVCD(2)
write(6,11) 'WPVTD(L) = ', WPVTD(1),'WPVTD(R) = ', WPVTD(2)
write(6,11) 'WPVUS(L) = ', WPVUS(1),'WPVUS(R) = ', WPVUS(2)
write(6,11) 'WPVTS(L) = ', WPVTS(1),'WPVTS(R) = ', WPVTS(2)
write(6,11) 'WPVUB(L) = ', WPVUB(1),'WPVUB(R) = ', WPVUB(2)
write(6,11) 'WPVCB(L) = ', WPVCB(1),'WPVCB(R) = ', WPVCB(2)
write(6,11) 'WPVEVE(L) = ', WPVEVE(1),'WPVEVE(R) = ', WPVEVE(2)
write(6,11) 'WPVMVM(L) = ', WPVMVM(1),'WPVMVM(R) = ', WPVMVM(2)
write(6,11) 'WPVTVT(L) = ', WPVTVT(1),'WPVTVT(R) = ', WPVTVT(2)
write(6,11) 'WPVEVM(L) = ', WPVEVM(1),'WPVEVM(R) = ', WPVEVM(2)
write(6,11) 'WPVEVT(L) = ', WPVEVT(1),'WPVEVT(R) = ', WPVEVT(2)
write(6,11) 'WPVMVE(L) = ', WPVMVE(1),'WPVMVE(R) = ', WPVMVE(2)
write(6,11) 'WPVMVT(L) = ', WPVMVT(1),'WPVMVT(R) = ', WPVMVT(2)
write(6,11) 'WPVTVE(L) = ', WPVTVE(1),'WPVTVE(R) = ', WPVTVE(2)
write(6,11) 'WPVTVM(L) = ', WPVTVM(1),'WPVTVM(R) = ', WPVTVM(2)
write(6,*)
write(6,*) 'Boson couplings:'
write(6,*) '----------------'
write(6,*)
write(6,20) 'gwwa = ', gwwa
write(6,20) 'gwwz = ', gwwz
write(6,20) 'gwwh = ', gwwh
write(6,20) 'gzzh = ', gzzh
write(6,20) 'ghhh = ', ghhh
write(6,*)
write(6,20) 'gwwhh = ', gwwhh
write(6,20) 'gzzhh = ', gzzhh
write(6,20) 'ghhhh = ', ghhhh
write(6,*)
write(6,*) 'FFV couplings:'
write(6,*) '--------------'
write(6,*)
write(6,11) 'gal(L) = ',gal(1), 'gal(R) = ',gal(2)
write(6,11) 'gau(L) = ',gau(1), 'gau(R) = ',gau(2)
write(6,11) 'gad(L) = ',gad(1), 'gad(R) = ',gad(2)
write(6,*)
write(6,11) 'gwf(L) = ',gwf(1), 'gwf(R) = ',gwf(2)
write(6,*)
write(6,11) 'gzn(L) = ',gzn(1), 'gzn(R) = ',gzn(2)
write(6,11) 'gzl(L) = ',gzl(1), 'gzl(R) = ',gzl(2)
write(6,11) 'gzu(L) = ',gzu(1), 'gzu(R) = ',gzu(2)
write(6,11) 'gzd(L) = ',gzd(1), 'gzd(R) = ',gzd(2)
write(6,*)
write(6,*) 'FFH couplings:'
write(6,*) '--------------'
write(6,*)
write(6,14) 'gHtop(L) = ',ghtop(1), 'gHtop(R) = ',ghtop(2)
write(6,14) 'gHbot(L) = ',ghbot(1), 'gHbot(R) = ',ghbot(2)
write(6,14) 'gHcha(L) = ',ghcha(1), 'gHcha(R) = ',ghcha(2)
write(6,14) 'gHtau(L) = ',ghtau(1), 'gHtau(R) = ',ghtau(2)
write(6,*)
write(6,*) 'Strong couplings:'
write(6,*) '-----------------'
write(6,*)
write(6,14) 'gg(1) = ',gg(1) , 'gg(2) = ',gg(2)
write(6,*)
write(6,*) 'User Model masses and widths:'
write(6,*) '-----------------------------'
write(6,*)
write(6,24) 'WPMASS = ', WPMASS, 'WPWIDTH = ', WPWIDTH
write(6,*)
write(6,*) 'User Model Parameters:'
write(6,*) '----------------------'
write(6,*) 'model = ', model
write(6,*) 'glscale = ', glscale
write(6,*) 'grscale = ', grscale
write(6,*) 'wpmodelfile = ', wpmodelfile
write(6,*)
return
end