Skip to content

Commit 7586506

Browse files
committed
FeynArts 3.11; Last update: 2 Sep 19;
* Found a hack to upgrade WriteTeXFile.m to work with current Mathematica versions. * Re-generated the vertex lists included in FeynArts with new WriteTeXFile.
1 parent 055db17 commit 7586506

27 files changed

+374
-328
lines changed

FeynArts.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
This is FeynArts, Version 3.11
44
Copyright by Sepp Kueblbeck, Hagen Eck, and Thomas Hahn 1991-2019
5-
last modified 11 Apr 19 by Thomas Hahn
5+
last modified 2 Sep 19 by Thomas Hahn
66
77
Release notes:
88
@@ -1146,9 +1146,9 @@ as arguments the quantum numbers of the involved fields (times -1 for
11461146
or amplitude list expr. n may be of the form 3, 42, 17...28 which
11471147
selects diagrams 3, 42, and 17 through 28."
11481148

1149-
Discard[args__] := (
1149+
Discard := (
11501150
Message[Discard::obsalt, Discard, DiagramDelete];
1151-
DiagramDelete[args] )
1151+
DiagramDelete )
11521152

11531153
DiagramMap::usage =
11541154
"DiagramMap[foo, diags] maps foo over all Feynman diagrams in diags."
@@ -1492,7 +1492,7 @@ derived by flip and can have values True (edit the original shape
14921492

14931493
$FeynArtsVersionNumber = 3.11
14941494

1495-
$FeynArtsVersion = "FeynArts 3.11 (11 Apr 2019)"
1495+
$FeynArtsVersion = "FeynArts 3.11 (2 Sep 2019)"
14961496

14971497
$FeynArtsDir = DirectoryName[
14981498
$InputFileName /. HoldPattern[$InputFileName] :>

FeynArts311.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
This is FeynArts, Version 3.11
44
Copyright by Sepp Kueblbeck, Hagen Eck, and Thomas Hahn 1991-2019
5-
last modified 11 Apr 19 by Thomas Hahn
5+
last modified 2 Sep 19 by Thomas Hahn
66
77
Release notes:
88
@@ -1146,9 +1146,9 @@ as arguments the quantum numbers of the involved fields (times -1 for
11461146
or amplitude list expr. n may be of the form 3, 42, 17...28 which
11471147
selects diagrams 3, 42, and 17 through 28."
11481148

1149-
Discard[args__] := (
1149+
Discard := (
11501150
Message[Discard::obsalt, Discard, DiagramDelete];
1151-
DiagramDelete[args] )
1151+
DiagramDelete )
11521152

11531153
DiagramMap::usage =
11541154
"DiagramMap[foo, diags] maps foo over all Feynman diagrams in diags."
@@ -1492,7 +1492,7 @@ derived by flip and can have values True (edit the original shape
14921492

14931493
$FeynArtsVersionNumber = 3.11
14941494

1495-
$FeynArtsVersion = "FeynArts 3.11 (11 Apr 2019)"
1495+
$FeynArtsVersion = "FeynArts 3.11 (2 Sep 2019)"
14961496

14971497
$FeynArtsDir = DirectoryName[
14981498
$InputFileName /. HoldPattern[$InputFileName] :>

Models/DupCheck.mod

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Attributes[Cset] = {Orderless}
2+
3+
DupCheck[cs_Cset, c_ == rhs_] := cs = c == rhs
4+
5+
DupCheck[c_ == rhs_, c1_ == rhs_] := Print["Duplicate couplings ", {c, c1}];
6+
7+
DupCheck[c_ == rhs_, c1_ == rhs1_] := Print["MISMATCHING duplicate couplings ", {c, c1}];
8+
9+
DupCheck[Cset@@ #[[1]], #]&/@ M$CouplingMatrices;
10+

Models/FV.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ M$CouplingMatrices = MapIndexed[ReplaceCoupling,
146146
USf[t:$FVf, g_][a_, b_] :> usf[t, g][a, b],
147147
USf[a_, b_, t:$FVf, g_] :> usf[t, g][a, b],
148148
USfC[a_, b_, t:$FVf, g_] :> Conjugate[usf[t, g][a, b]] }] //.
149+
IndexSum[fac_ expr_, {i_, n_}] :> fac IndexSum[expr, {i, n}] /; FreeQ[fac, i] //.
149150
IndexSum[IndexSum[expr_, i_], j__] :>
150151
IndexSum[expr, Sequence@@ Sort[{i, j}]]
151152

Models/FVMSSM.pdf

197 KB
Binary file not shown.

Models/FVMSSM.ps.gz

-154 KB
Binary file not shown.

Models/HMix.pdf

242 KB
Binary file not shown.

Models/HMix.ps.gz

-132 KB
Binary file not shown.

Models/MSSM.pdf

183 KB
Binary file not shown.

Models/MSSM.ps.gz

-141 KB
Binary file not shown.

Models/MSSMCT.pdf

-85.7 KB
Binary file not shown.

Models/MSSMQCD.pdf

78.8 KB
Binary file not shown.

Models/MSSMQCD.ps.gz

-23.4 KB
Binary file not shown.

Models/QED.ps.gz

-14.8 KB
Binary file not shown.

Models/SM-ct.pdf

128 KB
Binary file not shown.

Models/SM-ct.ps.gz

-71.2 KB
Binary file not shown.

Models/SM.pdf

90.5 KB
Binary file not shown.

Models/SM.ps.gz

-31.1 KB
Binary file not shown.

Models/SMQCD.pdf

65.4 KB
Binary file not shown.

Models/SMQCD.ps.gz

-16.6 KB
Binary file not shown.

Models/SMbgf.pdf

172 KB
Binary file not shown.

Models/SMbgf.ps.gz

-106 KB
Binary file not shown.

Models/THDM.pdf

119 KB
Binary file not shown.

Models/THDM.ps.gz

-67.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)