go-hep.org/x/hep@v0.38.1/fastjet/algorithm.go (about) 1 // Copyright ©2017 The go-hep Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package fastjet 6 7 // JetAlgorithm defines the algorithm used for clustering jets 8 type JetAlgorithm int 9 10 const ( 11 UndefinedJetAlgorithm JetAlgorithm = iota 12 KtAlgorithm 13 CambridgeAlgorithm 14 AntiKtAlgorithm 15 GenKtAlgorithm 16 CambridgeForPassiveAlgorithm 17 GenKtForPassiveAlgorithm 18 EeKtAlgorithm 19 EeGenKtAlgorithm 20 PluginAlgorithm 21 22 AachenAlgorithm = CambridgeAlgorithm 23 CambridgeAachenAlgorithm = CambridgeAlgorithm 24 )