diff --git a/src/PlainAlgo.jl b/src/PlainAlgo.jl index 34e186ba..9335a3b7 100644 --- a/src/PlainAlgo.jl +++ b/src/PlainAlgo.jl @@ -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) ``` """ diff --git a/src/TiledAlgoLL.jl b/src/TiledAlgoLL.jl index b2769a16..6565e3b9 100644 --- a/src/TiledAlgoLL.jl +++ b/src/TiledAlgoLL.jl @@ -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}; @@ -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};