Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QED tests #1738

Merged
merged 41 commits into from
Jun 19, 2023
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
cf8afeb
Add theories 398 397 to theory.db
niclaurenti May 22, 2023
70458a3
Merge branch 'master' into QED-tests
niclaurenti Jun 12, 2023
c6914a1
Merge branch 'master' into qed-tests
niclaurenti Jun 13, 2023
fcc3e8e
Add qed test in test_evolven3fit.py
niclaurenti Jun 13, 2023
5e7176e
Add qed test in test_fit
niclaurenti Jun 13, 2023
0af3004
Add qed test in test_fit 2
niclaurenti Jun 13, 2023
2256664
Refector QED tests
niclaurenti Jun 14, 2023
5a319fc
Fix test
niclaurenti Jun 14, 2023
9758018
Add fiatlux precision in the runcard
niclaurenti Jun 14, 2023
0a926fd
Rename abs_err -> eps_base
niclaurenti Jun 14, 2023
32e1a86
Use .json from linux machine
niclaurenti Jun 14, 2023
e2954ae
Fix very small bug in interp1d
niclaurenti Jun 14, 2023
3d1783d
Download theoryIDs
niclaurenti Jun 15, 2023
296e2d4
Add whitelines
niclaurenti Jun 16, 2023
22085f9
Merge branch 'qed-tests' of github.com:NNPDF/nnpdf into qed-tests
niclaurenti Jun 16, 2023
7585eea
Load theoryID from fit
niclaurenti Jun 16, 2023
57a5343
Use test theory in test_compute
niclaurenti Jun 16, 2023
077e2ed
Fix charm mass in test
niclaurenti Jun 16, 2023
388be7b
speed up photon computation in test
niclaurenti Jun 16, 2023
ddc57d3
Fix charm mass in test again
niclaurenti Jun 16, 2023
dba334a
Fix testing of alpha
niclaurenti Jun 16, 2023
3fa81ba
Fix test_compute
niclaurenti Jun 16, 2023
bb3a1fd
Add test on photon computation
niclaurenti Jun 16, 2023
3901ba5
Remove unused dependencies
niclaurenti Jun 16, 2023
f3de6b0
Polish test
niclaurenti Jun 16, 2023
7550e2d
Polish test again
niclaurenti Jun 16, 2023
98d919f
Pass test theory to test_structurefunctions.py
niclaurenti Jun 16, 2023
4b0ed9c
Run isort and black on test_structurefunctions.py
niclaurenti Jun 16, 2023
5ede6f4
Test init parameters of test_structurefunctions.py
niclaurenti Jun 16, 2023
52e9130
Run isort and black on test_structurefunctions.py
niclaurenti Jun 16, 2023
370d0dd
Use API to install pdfset
niclaurenti Jun 16, 2023
b97450d
Refactor test_structurefunctions.py and add docstrings
niclaurenti Jun 16, 2023
3e548a8
Small modification
niclaurenti Jun 16, 2023
b40db35
Use FIATLUX_DEFAULT from photon.compute
niclaurenti Jun 16, 2023
0958b08
Remove unused import
niclaurenti Jun 16, 2023
61c5bb9
Remove variable NNPDF40
niclaurenti Jun 19, 2023
53d7c73
Add comment
niclaurenti Jun 19, 2023
502997f
Merge branch 'master' into qed-tests
niclaurenti Jun 19, 2023
d5a48f9
Check installation of error pdf in test
niclaurenti Jun 19, 2023
1e237da
Call black and isort
niclaurenti Jun 19, 2023
1e105cd
Fix last commit
niclaurenti Jun 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion validphys2/src/validphys/tests/photon/test_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@
from validphys.core import PDF as PDFset
from validphys.photon import structure_functions as sf
from validphys.photon.compute import Alpha, Photon, FIATLUX_DEFAULT
from validphys.loader import FallbackLoader

from ..conftest import PDF

TEST_THEORY = API.theoryid(theoryid=398)

# check if "LUXqed17_plus_PDF4LHC15_nnlo_100" is installed
FallbackLoader().check_pdf("LUXqed17_plus_PDF4LHC15_nnlo_100")
niclaurenti marked this conversation as resolved.
Show resolved Hide resolved
FIATLUX_RUNCARD = {
"luxset": PDFset(PDF),
"additional_errors": API.pdf(pdf='LUXqed17_plus_PDF4LHC15_nnlo_100'),
"additional_errors": PDFset('LUXqed17_plus_PDF4LHC15_nnlo_100'),
"luxseed": 123456789,
"eps_base": 1e-2, # using low precision to speed up tests
}
Expand Down
Loading