Skip to content

Commit 82f1a80

Browse files
authored
fix a few more typos (#130)
1 parent 9771aa4 commit 82f1a80

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Three strategies are available for the different algorithms:
8181
| Strategy Name | Notes | Interface |
8282
|---|---|---|
8383
| `RecoStrategy.Best` | Dynamically switch strategy based on input particle density | `jet_reconstruct` |
84-
| `RecoStrategy.N2Plain` | Global matching of particles at each interation (works well for low $N$) | `plain_jet_reconstruct` |
84+
| `RecoStrategy.N2Plain` | Global matching of particles at each interaction (works well for low $N$) | `plain_jet_reconstruct` |
8585
| `RecoStrategy.N2Tiled` | Use tiles of radius $R$ to limit search space (works well for higher $N$) | `tiled_jet_reconstruct` |
8686

8787
Generally one can use the `jet_reconstruct` interface, shown above, as the *Best* strategy safely as the overhead is extremely low. That interface supports a `strategy` option to switch to a different option.

docs/src/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jet reconstruction in the browser. This is a 3D plot where all the initial
6464
energy deposits are visualised, with colours that indicate in which final
6565
cluster the deposit ended up in.
6666

67-
The first example is a Jupyter notbook, the second runs in Pluto.
67+
The first example is a Jupyter notebook, the second runs in Pluto.
6868

6969
### `animate-reconstruction.jl`
7070

docs/src/strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ to the reconstruction.
77
| Strategy Name | Notes | Interface |
88
|---|---|---|
99
| `RecoStrategy.Best` | Dynamically switch strategy based on input particle density | `jet_reconstruct` |
10-
| `RecoStrategy.N2Plain` | Global matching of particles at each interation (works well for low $N$) | `plain_jet_reconstruct` |
10+
| `RecoStrategy.N2Plain` | Global matching of particles at each interaction (works well for low $N$) | `plain_jet_reconstruct` |
1111
| `RecoStrategy.N2Tiled` | Use tiles of radius $R$ to limit search space (works well for higher $N$) | `tiled_jet_reconstruct` |
1212

1313
Generally one can use the `jet_reconstruct` interface, shown above, as the

test/_common.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const events_file_pp = joinpath(@__DIR__, "data", "events.pp13TeV.hepmc3.gz")
1919
const events_file_ee = joinpath(@__DIR__, "data", "events.eeH.hepmc3.gz")
2020

2121
const pp_algorithms = Dict(-1 => "Anti-kt",
22-
0 => "Cambridge/Achen",
22+
0 => "Cambridge/Aachen",
2323
1 => "Inclusive-kt",
2424
1.5 => "Generalised-kt")
2525

test/data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
- Unzip to `evemts.hepmc3` for actual use
77

88
- `jet_collections_fastjet_akt.json` - JSON output from running anti-kt jet reconstruction using FastJet 3.4.1, with R=0.4 and p_t_min=5.0
9-
- `jet_collections_fastjet_ca.json` - JSON output from running Cambridge/Achen jet reconstruction using FastJet 3.4.1, with R=0.4 and p_t_min=5.0
9+
- `jet_collections_fastjet_ca.json` - JSON output from running Cambridge/Aachen jet reconstruction using FastJet 3.4.1, with R=0.4 and p_t_min=5.0
1010
- `jet_collections_fastjet_ikt.json` - JSON output from running inclusive-kt jet reconstruction using FastJet 3.4.1, with R=0.4 and p_t_min=5.0

0 commit comments

Comments
 (0)