Skip to content

Commit

Permalink
Standardize model and notebook file names (#54)
Browse files Browse the repository at this point in the history
* renaming lc2ppik
* x3pi renaming
* pipipi renaming
  • Loading branch information
mmikhasenko authored May 28, 2024
1 parent bf4b157 commit cbbdfe3
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .cspell/project.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
callout
lhcb
Mikhasenko
Misha
multline
pdfs
ppik
pipipi
semileptonic
10 changes: 5 additions & 5 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# cspell:ignore pkpi subdir
# cspell:ignore ppiK lhcb subdir
execute:
cache: true
enabled: true
Expand Down Expand Up @@ -35,9 +35,9 @@ website:
contents:
- section: Julia
contents:
- julia/lc2pkpi.qmd
- julia/lb2pkg.qmd
- julia/X23pi_compass.qmd
- julia/lc2ppik-lhcb-2683025.qmd
- julia/lb2pkg-lhcb-2765817.qmd
- julia/x2pipipi-compass-1391643.qmd
- section: Python
contents:
- python/lc2pkpi.qmd
- python/lc2ppik-lhcb-2683025.qmd
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ This section acts as a model integrity check, providing reference amplitudes for
<summary>See the full example</summary>

```json
{{< include ../models/Lc2ppiK.json >}}
{{< include ../models/lc2ppik-lhcb-2683025.json >}}
```

</details>
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ end
Model components are deserialized from a JSON file into computational objects within a workspace for further manipulation. First, functions representing lineshapes and form-factors are built. Following this, distributions are processed and added to the workspace.

```{julia}
input = open(joinpath(@__DIR__, "..", "..", "models", "Lb2pKg.json")) do io
input = open(joinpath(@__DIR__, "..", "..", "models", "lb2pkg-lhcb-2765817.json")) do io
JSON.parse(io)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ end
Model components are deserialized from a JSON file into computational objects within a workspace for further manipulation. First, functions representing lineshapes and form factors are built. Following this, distributions are processed and added to the workspace.

```{julia}
input = open(joinpath(@__DIR__, "..", "..", "models", "Lc2ppiK.json")) do io
input = open(joinpath(@__DIR__, "..", "..", "models", "lc2ppik-lhcb-2683025.json")) do io
JSON.parse(io)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Model components are deserialized from a JSON file into computational objects wi
#| code-fold: true
#| code-summary: All `functions` and `distributution` are parsed here
#| output: false
input = open(joinpath(@__DIR__, "..", "..", "models", "X23pi_compass.json")) do io
input = open(joinpath(@__DIR__, "..", "..", "models", "x2pipipi-compass-1391643.json")) do io
JSON.parse(io)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ simplify_latex_rendering()
```

```{python}
with open(THIS_DIR.parent.parent / "models" / "Lc2ppiK.json") as stream:
with open(THIS_DIR.parent.parent / "models" / "lc2ppik-lhcb-2683025.json") as stream:
MODEL_DEFINITION = json.load(stream)
```

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cbbdfe3

Please sign in to comment.