Skip to content

Commit

Permalink
Merge pull request #1243 from scikit-hep/lgray-patch-1
Browse files Browse the repository at this point in the history
fix: typo in doublecb implementation
  • Loading branch information
lgray authored Jan 13, 2025
2 parents dd98953 + c53567a commit cb217e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coffea/lookup_tools/doublecrystalball.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def _argcheck(self, betaL, betaH, mL, mH):
"""
Shape parameter bounds are m > 1 and beta > 0.
"""
return (mL > 1) & (betaL > 0) & (mH > 1) & (betaH > 1)
return (mL > 1) & (betaL > 0) & (mH > 1) & (betaH > 0)


doublecrystalball = doublecrystalball_gen(
Expand Down

0 comments on commit cb217e9

Please sign in to comment.