Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
graeme-a-stewart committed Jun 10, 2024
1 parent 14beebf commit eb8dcc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AlgorithmStrategyEnums.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Scoped enumeration (using EnumX) representing the different strategies for jet r
- `N2Plain`: The plain N2 strategy.
- `N2Tiled`: The tiled N2 strategy.
"""
@enumx T = Strategy RecoStrategy Best N2Plain N2Tiled
@enumx T=Strategy RecoStrategy Best N2Plain N2Tiled
const AllJetRecoStrategies = [String(Symbol(x)) for x in instances(RecoStrategy.Strategy)]

"""
Expand All @@ -26,7 +26,7 @@ Scoped enumeration (using EnumX) representing different jet algorithms used in t
- `EEKt`: The Generalised e+e- kt algorithm.
- `Durham`: The e+e- kt algorithm, aka Durham.
"""
@enumx T = Algorithm JetAlgorithm AntiKt CA Kt EEKt Durham
@enumx T=Algorithm JetAlgorithm AntiKt CA Kt EEKt Durham
const AllJetRecoAlgorithms = [String(Symbol(x)) for x in instances(JetAlgorithm.Algorithm)]

"""
Expand All @@ -35,8 +35,8 @@ const AllJetRecoAlgorithms = [String(Symbol(x)) for x in instances(JetAlgorithm.
A dictionary that maps power values to corresponding jet algorithm used for pp jet reconstruction.
"""
const power2algorithm = Dict(-1 => JetAlgorithm.AntiKt,
0 => JetAlgorithm.CA,
1 => JetAlgorithm.Kt)
0 => JetAlgorithm.CA,
1 => JetAlgorithm.Kt)

"""
algorithm2power
Expand Down

0 comments on commit eb8dcc1

Please sign in to comment.