Skip to content

Commit

Permalink
account for k{fl}Thr in damping step function fonll
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Oct 27, 2023
1 parent c4ea638 commit 2d49d63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pineko/fonll.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@ def produce_dampings(theorycard_constituent_fks, fonll_info, damp):
"""Return the damping factors for each of the relevant masses."""
mc = theorycard_constituent_fks["mc"]
mb = theorycard_constituent_fks["mb"]
kcthr = theorycard_constituent_fks["kcThr"]
kbthr = theorycard_constituent_fks["kbThr"]
q2grid = fonll_info.Q2grid
step_function_charm = mc**2 < q2grid
step_function_bottom = mb**2 < q2grid
step_function_charm = (kcthr * mc) ** 2 < q2grid
step_function_bottom = (kbthr * mb) ** 2 < q2grid
damping_factor_charm = (1 - mc / q2grid) ** damp[1]
damping_factor_bottom = (1 - mb / q2grid) ** damp[1]
damping_factor_charm *= step_function_charm
Expand Down

0 comments on commit 2d49d63

Please sign in to comment.