Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/PlainAlgo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ space.

# Example
```julia
jets = plain_jet_reconstruct(particles; p = -1, R = 0.4)
jets = plain_jet_reconstruct(particles; algorithm = JetAlgorithm.GenKt, p = -1, R = 0.4)
jets = plain_jet_reconstruct(particles; algorithm = JetAlgorithm.Kt, R = 1.0)
```
"""
Expand Down
5 changes: 3 additions & 2 deletions src/TiledAlgoLL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ If both are given they must be consistent or an exception is thrown.

## Example
```julia
tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; p = -1, R = 0.4)
tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; algorithm = JetAlgorithm.GenKt, p = 0.5, R = 0.4)
tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; algorithm = JetAlgorithm.AntiKt, R = 0.4)
```
"""
function tiled_jet_reconstruct(particles::AbstractVector{T};
Expand Down Expand Up @@ -381,7 +382,7 @@ power parameter.

## Example
```julia
tiled_jet_reconstruct(particles::Vector{PseudoJet}; p = 1, R = 0.4)
_tiled_jet_reconstruct(particles::Vector{PseudoJet}; algorithm = JetAlgorithm.Kt, p = 1, R = 0.4)
```
"""
function _tiled_jet_reconstruct(particles::AbstractVector{PseudoJet};
Expand Down
Loading