go-hep.org/x/hep@v0.38.1/fads/event.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 fads 6 7 type Event struct { 8 Header RunHeader 9 } 10 11 type RunHeader struct { 12 RunNbr int64 // run number 13 EvtNbr int64 // event number 14 Trigger int64 // trigger word 15 }