go-hep.org/x/hep@v0.38.1/fastjet/builder.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 // Builder builds jets out of 4-vectors 8 type Builder interface { 9 // InclusiveJets returns all jets (in the sense of 10 // the inclusive algorithm) with pt >= ptmin 11 InclusiveJets(ptmin float64) ([]Jet, error) 12 13 // ExclusiveJets 14 15 // Constituents retrieves the constituents of a jet 16 Constituents(jet *Jet) ([]Jet, error) 17 }