1 | c************************************************************************
|
---|
2 | c** **
|
---|
3 | c** MadGraph/MadEvent Interface to FeynRules **
|
---|
4 | c** **
|
---|
5 | c** C. Duhr (Louvain U.) - M. Herquet (NIKHEF) **
|
---|
6 | c** **
|
---|
7 | c************************************************************************
|
---|
8 |
|
---|
9 | c Formats for printout output
|
---|
10 |
|
---|
11 | c Simple real
|
---|
12 | 1 format(1x,a15,e16.5)
|
---|
13 | c Simple Complex
|
---|
14 | 2 format(1x,a15,e16.5,1x,e16.5)
|
---|
15 | c Real with mass dimension
|
---|
16 | 3 format(1x,a15,e16.5,' GeV')
|
---|
17 | c Chiral couplings
|
---|
18 | 4 format(1x,a15,e16.5,1x,e16.5,a15,e16.5,1x,e16.5)
|
---|
19 |
|
---|
20 |
|
---|
21 | c Formats for helas_coupling output
|
---|
22 |
|
---|
23 | c Real
|
---|
24 | 11 format(a10,e16.5)
|
---|
25 | c Complex
|
---|
26 | 12 format(a10,e16.5,1x,e16.5 )
|
---|
27 | c Chiral
|
---|
28 | 13 format(a10,e16.5,1x,e16.5,1x,e16.5,1x,e16.5 )
|
---|
29 |
|
---|