Skip to content

Commit

Permalink
f -> x*f
Browse files Browse the repository at this point in the history
  • Loading branch information
t7phy committed Jun 17, 2024
1 parent e4fc1e2 commit 1c3c863
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/banana/toy.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,13 @@ def __init__(self):
D_g = lambda x: N_g * x**1.943 * (1 - x) ** 8

self.xpdf = {}
self.xpdf[-3] = D_ub
self.xpdf[-2] = D_ub
self.xpdf[-1] = D_u
self.xpdf[0] = D_g
self.xpdf[1] = D_ub
self.xpdf[2] = D_u
self.xpdf[3] = D_ub
self.xpdf[-3] = lambda x: x * D_ub
self.xpdf[-2] = lambda x: x * D_ub
self.xpdf[-1] = lambda x: x * D_u
self.xpdf[0] = lambda x: x * D_g
self.xpdf[1] = lambda x: x * D_ub
self.xpdf[2] = lambda x: x * D_u
self.xpdf[3] = lambda x: x * D_ub
self.xpdf[21] = self.xpdf[0]
self.name = "ToyFF_unpolarized"

Expand Down

0 comments on commit 1c3c863

Please sign in to comment.