Skip to content
Merged
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion validphys2/src/validphys/pdfbases.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
This holds the concrete labels data relative to the PDF bases,
as declaratively as possible.
"""
import copy
import inspect
import functools
import abc
Expand Down Expand Up @@ -508,7 +509,8 @@ def f_(transform_func):

EVOL = evolution

CCBAR_ASYMM = evolution
CCBAR_ASYMM = copy.deepcopy(evolution)
CCBAR_ASYMM.default_elements = (r'\Sigma', 'V', 'T3', 'V3', 'T8', 'V8', 'T15', 'gluon', 'V15')

PDF4LHC20 = LinearBasis.from_mapping({
r'\Sigma': {
Expand Down