Skip to content

Commit

Permalink
Fix Chew-Mandelstam
Browse files Browse the repository at this point in the history
Co-authored-by: Remco de Boer <[email protected]>
  • Loading branch information
Zeyna777 and redeboer authored Mar 4, 2024
1 parent 613ae22 commit f49769b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ampform/dynamics/phasespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def chew_mandelstam_s_wave(s, m1, m2):
right_term = (m1**2 - m2**2) * (1 / s - 1 / (m1 + m2) ** 2) * sp.log(m1 / m2)
# evaluate=False in order to keep same style as PDG
return sp.Mul(
1 / (2 * sp.pi),
1 / sp.pi,
left_term - right_term,
evaluate=False,
)
Expand Down

0 comments on commit f49769b

Please sign in to comment.