Skip to content

Commit

Permalink
Fix typos in README (#44)
Browse files Browse the repository at this point in the history
* Fix typos in README

* fix more typos
  • Loading branch information
hegner authored May 23, 2024
1 parent 13e2ce9 commit 734b776
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Algorithms used are based on the C++ FastJet package (<https://fastjet.fr>,
[hep-ph/0512210](https://arxiv.org/abs/hep-ph/0512210),
[arXiv:1111.6097](https://arxiv.org/abs/1111.6097)), reimplemented natively in Julia.

The algorithms include anti-${k}_\text{T}$, Cambridge/Achen and inclusive $k_\text{T}$.
The algorithms include anti-${k}_\text{T}$, Cambridge/Aachen and inclusive $k_\text{T}$.

### Interface

Expand All @@ -26,7 +26,7 @@ cs = jet_reconstruct(particles::Vector{T}; p = -1, R = 1.0, recombine = +, strat
- The `PseudoJet` type from this package, or a 4-vector from `LorentzVectorHEP` are suitable (and have the appropriate definitions)
- `p` - the transverse momentum power used in the $d_{ij}$ metric for deciding on closest jets, as $k^{2p}_\text{T}$. Different values of $p$ then give different reconstruction algorithms:
- `-1` gives anti-$`{k}_\text{T}`$ clustering (default)
- `0` gives Cambridge/Achen
- `0` gives Cambridge/Aachen
- `1` gives inclusive $k_\text{T}$
- `R` - the cone size parameter; no particles more geometrically distance than `R` will be merged (default 1.0)
- `recombine` - the function used to merge two pseudojets (default is a simple 4-vector addition of $`(E, \mathbf{p})`$)
Expand Down
4 changes: 2 additions & 2 deletions examples/jetreco.jl
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ parse_command_line(args) = begin
default = 0.4

"--power"
help = "Distance measure momentum power (-1 - antikt; 0 - Cambridge/Achen; 1 - inclusive k_t)"
help = "Distance measure momentum power (-1 - antikt; 0 - Cambridge/Aachen; 1 - inclusive k_t)"
arg_type = Int
default = -1

Expand Down Expand Up @@ -220,7 +220,7 @@ parse_command_line(args) = begin
action = :store_true

"--dump"
help = "Write list of recontructed jets to a JSON formatted file"
help = "Write list of reconstructed jets to a JSON formatted file"

"--info"
help = "Print info level log messages"
Expand Down

0 comments on commit 734b776

Please sign in to comment.