Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrommyd committed Apr 1, 2024
1 parent c87c50a commit dc7de44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zfit_physics/models/pdf_novosibirsk.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def novosibirsk_pdf(x, peak, width, tail):
exponent = (-0.5 / width_zero2 * log_arg**2) - (width_zero2 * 0.5)

gauss_exponent = -0.5 * ((x - peak) / width) ** 2
exponents = znp.where(cond1, gauss, znp.where(cond2, 0.0, exponent))
exponents = znp.where(cond1, gauss_exponent, znp.where(cond2, 0.0, exponent))
return znp.exp(exponents)


Expand Down

0 comments on commit dc7de44

Please sign in to comment.