Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shenvitor committed Sep 2, 2024
1 parent a17e322 commit d20d12c
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/lambda-k-pi/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
```{toctree}
ampform
ampform-dpd
manual-dpd
```
72 changes: 72 additions & 0 deletions docs/lambda-k-pi/manual-dpd.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Manually modelling helicity amplitudes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The goal in this notebook is to formulate helicity amplitude model manually and reproduce the result in [Amplitude model with `ampform-dpd` notebook](ampform-dpd.ipynb)."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"jupyter": {
"source_hidden": true
},
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"from __future__ import annotations\n",
"\n",
"import logging\n",
"import os\n",
"import warnings\n",
"\n",
"STATIC_PAGE = \"EXECUTE_NB\" in os.environ\n",
"\n",
"os.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"3\"\n",
"logging.disable(logging.WARNING)\n",
"warnings.filterwarnings(\"ignore\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Model implementation"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.5"
}
},
"nbformat": 4,
"nbformat_minor": 4
}

0 comments on commit d20d12c

Please sign in to comment.