File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ space.
218218
219219# Example
220220```julia
221- jets = plain_jet_reconstruct(particles; p = -1, R = 0.4)
221+ jets = plain_jet_reconstruct(particles; algorithm = JetAlgorithm.GenKt, p = -1, R = 0.4)
222222jets = plain_jet_reconstruct(particles; algorithm = JetAlgorithm.Kt, R = 1.0)
223223```
224224"""
Original file line number Diff line number Diff line change @@ -316,7 +316,8 @@ If both are given they must be consistent or an exception is thrown.
316316
317317## Example
318318```julia
319- tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; p = -1, R = 0.4)
319+ tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; algorithm = JetAlgorithm.GenKt, p = 0.5, R = 0.4)
320+ tiled_jet_reconstruct(particles::Vector{LorentzVectorHEP}; algorithm = JetAlgorithm.AntiKt, R = 0.4)
320321```
321322"""
322323function tiled_jet_reconstruct (particles:: AbstractVector{T} ;
@@ -381,7 +382,7 @@ power parameter.
381382
382383## Example
383384```julia
384- tiled_jet_reconstruct (particles::Vector{PseudoJet}; p = 1, R = 0.4)
385+ _tiled_jet_reconstruct (particles::Vector{PseudoJet}; algorithm = JetAlgorithm.Kt, p = 1, R = 0.4)
385386```
386387"""
387388function _tiled_jet_reconstruct (particles:: AbstractVector{PseudoJet} ;
You can’t perform that action at this time.
0 commit comments