Skip to content

Commit

Permalink
add step=0.01 in lambdakpi fampform nb
Browse files Browse the repository at this point in the history
  • Loading branch information
shenvitor committed Aug 25, 2024
1 parent 07f7abb commit a0ccda1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/lambda-k-pi/ampform.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,7 @@
" description=Rf\"\\({sp.latex(symbol)}\\)\",\n",
" min=0.0,\n",
" max=1.0,\n",
" step=0.01,\n",
" value=value,\n",
" continuous_update=False,\n",
" )\n",
Expand All @@ -499,6 +500,7 @@
" description=Rf\"\\({sp.latex(symbol)}\\)\",\n",
" min=0.63,\n",
" max=4,\n",
" step=0.01,\n",
" value=value,\n",
" continuous_update=False,\n",
" )\n",
Expand All @@ -518,13 +520,15 @@
" description=Rf\"\\({c_latex}\\)\",\n",
" min=0,\n",
" max=10,\n",
" step=0.01,\n",
" value=abs(value),\n",
" continuous_update=False,\n",
" )\n",
" slider_phi = w.FloatSlider(\n",
" description=Rf\"\\({phi_latex}\\)\",\n",
" min=-np.pi,\n",
" max=+np.pi,\n",
" step=0.01,\n",
" value=np.angle(value),\n",
" continuous_update=False,\n",
" )\n",
Expand Down

0 comments on commit a0ccda1

Please sign in to comment.