-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only sort T's by anti or not anti. add tests.
- Loading branch information
Showing
12 changed files
with
207 additions
and
64 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
tests/form/qcd/2_to_2/colorcorrelation/test_colorcorrelation_ee_qq.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import logging | ||
|
||
import equation_database.isbn_9780511628788 as ref | ||
import sympy | ||
from feynml.interface.qgraf import style | ||
from feynmodel.interface.qgraf import feynmodel_to_qgraf | ||
from feynmodel.interface.ufo import load_ufo_model | ||
from pyfeyn2.feynmandiagram import FeynML | ||
from pyqgraf import qgraf | ||
from xsdata.formats.dataclass.parsers import XmlParser | ||
|
||
from feynamp.form import compute_squared | ||
|
||
logger = logging.getLogger("feynamp") | ||
logger.setLevel(logging.DEBUG) | ||
|
||
|
||
def test_colorcorrelation_ee_qq(): | ||
fm = load_ufo_model("ufo_sm") | ||
qfm = feynmodel_to_qgraf(fm, True, False) | ||
|
||
qgraf.install() | ||
xml_string = qgraf.run( | ||
"e_minus[p1], e_plus[p2]", | ||
"u[p3], u_bar[p4]", | ||
loops=0, | ||
loop_momentum="l", | ||
model=qfm, | ||
style=style, | ||
) | ||
|
||
parser = XmlParser() | ||
fml = parser.from_string(xml_string, FeynML) | ||
fds = [fml.diagrams[0]] | ||
born = compute_squared(fds, fm, colorcorrelated=False) | ||
cc = compute_squared(fds, fm, colorcorrelated=True) | ||
assert (cc / born).simplify().equals(sympy.parse_expr("Cf*colorcorrelation(p3,p4)")) |
71 changes: 71 additions & 0 deletions
71
tests/form/qcd/2_to_2/colorcorrelation/test_colorcorrelation_qq_qq.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import logging | ||
|
||
import equation_database.isbn_9780511628788 as ref | ||
import sympy | ||
from feynml.interface.qgraf import style | ||
from feynmodel.interface.qgraf import feynmodel_to_qgraf | ||
from feynmodel.interface.ufo import load_ufo_model | ||
from pyfeyn2.feynmandiagram import FeynML | ||
from pyqgraf import qgraf | ||
from xsdata.formats.dataclass.parsers import XmlParser | ||
|
||
from feynamp.form import compute_squared | ||
|
||
logger = logging.getLogger("feynamp") | ||
logger.setLevel(logging.DEBUG) | ||
|
||
|
||
def test_colorcorrelation_qq_photon_qq(): | ||
fm = load_ufo_model("ufo_sm") | ||
qfm = feynmodel_to_qgraf(fm, True, False) | ||
|
||
qgraf.install() | ||
xml_string = qgraf.run( | ||
"u[p1], u_bar[p2]", | ||
"u[p3], u_bar[p4]", | ||
loops=0, | ||
loop_momentum="l", | ||
model=qfm, | ||
style=style, | ||
) | ||
|
||
parser = XmlParser() | ||
fml = parser.from_string(xml_string, FeynML) | ||
fds = [fml.diagrams[0]] | ||
born = compute_squared(fds, fm, colorcorrelated=False) | ||
cc = compute_squared(fds, fm, colorcorrelated=True) | ||
assert ( | ||
(cc / born) | ||
.simplify() | ||
.equals("Cf*(colorcorrelation(p1, p2) + colorcorrelation(p3, p4))") | ||
) | ||
|
||
|
||
def test_colorcorrelation_qq_gluon_qq(): | ||
fm = load_ufo_model("ufo_sm") | ||
qfm = feynmodel_to_qgraf(fm, True, False) | ||
|
||
qgraf.install() | ||
xml_string = qgraf.run( | ||
"u[p1], u_bar[p2]", | ||
"u[p3], u_bar[p4]", | ||
loops=0, | ||
loop_momentum="l", | ||
model=qfm, | ||
style=style, | ||
) | ||
|
||
parser = XmlParser() | ||
fml = parser.from_string(xml_string, FeynML) | ||
fds = [fml.diagrams[2]] | ||
born = compute_squared(fds, fm, colorcorrelated=False) | ||
cc = compute_squared(fds, fm, colorcorrelated=True) | ||
assert ( | ||
(cc / born) | ||
.simplify() | ||
.equals( | ||
sympy.parse_expr( | ||
"Cf*colorcorrelation(p1, p2) + Cf*colorcorrelation(p3, p4) - Nc*colorcorrelation(p1, p2)/2 + Nc*colorcorrelation(p1, p3)/4 - Nc*colorcorrelation(p1, p4)/4 - Nc*colorcorrelation(p2, p3)/4 + Nc*colorcorrelation(p2, p4)/4 - Nc*colorcorrelation(p3, p4)/2 + Nc**2*colorcorrelation(p1, p3)/(8*Cf) + Nc**2*colorcorrelation(p1, p4)/(8*Cf) + Nc**2*colorcorrelation(p2, p3)/(8*Cf) + Nc**2*colorcorrelation(p2, p4)/(8*Cf) - 5*colorcorrelation(p1, p3)/(8*Cf) - 5*colorcorrelation(p1, p4)/(8*Cf) - 5*colorcorrelation(p2, p3)/(8*Cf) - 5*colorcorrelation(p2, p4)/(8*Cf) + colorcorrelation(p1, p3)/(2*Cf*Nc**2) + colorcorrelation(p1, p4)/(2*Cf*Nc**2) + colorcorrelation(p2, p3)/(2*Cf*Nc**2) + colorcorrelation(p2, p4)/(2*Cf*Nc**2)" | ||
) | ||
) | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.