~maddevelopers/mg5amcnlo/FKS_EW_granny

« back to all changes in this revision

Viewing changes to models/OLD_loopModels_backup/smQCDNLOmass/particles.py

  • Committer: Marco Zaro
  • Date: 2018-04-16 14:08:47 UTC
  • mfrom: (78.403.58 2.6.2)
  • Revision ID: marco.zaro@gmail.com-20180416140847-nuz7haj3di3gqqhq
merged with 2.6.2 rev 332

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# This file was automatically created by FeynRules $Revision: 535 $
2
 
# Mathematica version: 7.0 for Mac OS X x86 (64-bit) (November 11, 2008)
3
 
# Date: Fri 18 Mar 2011 18:40:51
4
 
 
5
 
 
6
 
from __future__ import division
7
 
from object_library import all_particles, Particle
8
 
import parameters as Param
9
 
import CT_parameters as CTParam
10
 
 
11
 
d = Particle(pdg_code = 1,
12
 
             name = 'd',
13
 
             antiname = 'd~',
14
 
             spin = 2,
15
 
             color = 3,
16
 
             mass = Param.ZERO,
17
 
             width = Param.ZERO,
18
 
             texname = 'd',
19
 
             antitexname = 'd',
20
 
             charge = -1/3,
21
 
             LeptonNumber = 0,
22
 
             GhostNumber = 0)
23
 
 
24
 
d__tilde__ = d.anti()
25
 
 
26
 
u = Particle(pdg_code = 2,
27
 
             name = 'u',
28
 
             antiname = 'u~',
29
 
             spin = 2,
30
 
             color = 3,
31
 
             mass = Param.ZERO,
32
 
             width = Param.ZERO,
33
 
             texname = 'u',
34
 
             antitexname = 'u',
35
 
             charge = 2/3,
36
 
             LeptonNumber = 0,
37
 
             GhostNumber = 0)
38
 
 
39
 
u__tilde__ = u.anti()
40
 
 
41
 
s = Particle(pdg_code = 3,
42
 
             name = 's',
43
 
             antiname = 's~',
44
 
             spin = 2,
45
 
             color = 3,
46
 
             mass = Param.ZERO,
47
 
             width = Param.ZERO,
48
 
             texname = 's',
49
 
             antitexname = 's',
50
 
             charge = -1/3,
51
 
             LeptonNumber = 0,
52
 
             GhostNumber = 0)
53
 
 
54
 
s__tilde__ = s.anti()
55
 
 
56
 
c = Particle(pdg_code = 4,
57
 
             name = 'c',
58
 
             antiname = 'c~',
59
 
             spin = 2,
60
 
             color = 3,
61
 
             mass = Param.ZERO,
62
 
             width = Param.ZERO,
63
 
             texname = 'c',
64
 
             antitexname = 'c',
65
 
             charge = 2/3,
66
 
             LeptonNumber = 0,
67
 
             GhostNumber = 0)
68
 
 
69
 
c__tilde__ = c.anti()
70
 
 
71
 
b = Particle(pdg_code = 5,
72
 
             name = 'b',
73
 
             antiname = 'b~',
74
 
             spin = 2,
75
 
             color = 3,
76
 
             mass = Param.MB,
77
 
             width = Param.ZERO,
78
 
             texname = 'b',
79
 
             antitexname = 'b',
80
 
             charge = -1/3,
81
 
             LeptonNumber = 0,
82
 
             GhostNumber = 0)
83
 
 
84
 
b__tilde__ = b.anti()
85
 
 
86
 
t = Particle(pdg_code = 6,
87
 
             name = 't',
88
 
             antiname = 't~',
89
 
             spin = 2,
90
 
             color = 3,
91
 
             mass = Param.MT,
92
 
             width = Param.ZERO,
93
 
             texname = 't',
94
 
             antitexname = 't',
95
 
             charge = 2/3,
96
 
             LeptonNumber = 0,
97
 
             GhostNumber = 0)
98
 
 
99
 
t__tilde__ = t.anti()
100
 
 
101
 
G = Particle(pdg_code = 21,
102
 
             name = 'G',
103
 
             antiname = 'G',
104
 
             spin = 3,
105
 
             color = 8,
106
 
             mass = Param.ZERO,
107
 
             width = Param.ZERO,
108
 
             texname = 'G',
109
 
             antitexname = 'G',
110
 
             charge = 0,
111
 
             LeptonNumber = 0,
112
 
             GhostNumber = 0)
113
 
 
114
 
gh = Particle(pdg_code = 666,
115
 
             name = 'gh',
116
 
             antiname = 'gh~',
117
 
             spin = 1,
118
 
             color = 8,
119
 
             mass = Param.ZERO,
120
 
             width = Param.ZERO,
121
 
             texname = 'gh',
122
 
             antitexname = 'gh',
123
 
             charge = 0,
124
 
             LeptonNumber = 0,
125
 
             line='dashed',
126
 
             GhostNumber = 1)
127
 
 
128
 
gh__tilde__ = gh.anti()
129
 
 
130
 
# Wavefunction renormalization
131
 
 
132
 
b.loop_particles = [[[b,G]]]
133
 
b.counterterm = {(1,0):CTParam.bWcft_UV.value}
134
 
 
135
 
t.loop_particles = [[[t,G]]]
136
 
t.counterterm = {(1,0):CTParam.tWcft_UV.value}
137
 
 
138
 
G.loop_particles = [[[b],[t]]]
139
 
G.counterterm = {(1,0):CTParam.GWcft_UV_b.value,(1,1):CTParam.GWcft_UV_t.value}
140