go-hep.org/x/hep@v0.38.1/lcio/hit.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 lcio
     6  
     7  // Hit is an abstract Hit in the LCIO event data model.
     8  type Hit interface {
     9  	GetCellID0() int32
    10  	GetCellID1() int32
    11  }