go-hep.org/x/hep@v0.38.1/groot/rvers/doc.go (about)

     1  // Copyright ©2018 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 rvers contains the ROOT version and the classes' versions
     6  // groot is supporting and currently reading.
     7  package rvers // import "go-hep.org/x/hep/groot/rvers"
     8  
     9  const (
    10  	// Groot version for STL-based classes.
    11  	// This used to be just StreamerInfo (v=9), but ROOT-6.36.xx bumped TStreamerInfo to v=10
    12  	// and this demonstrated our handling of STL-based classes (the reading part) was subpar.
    13  	//
    14  	// So now we still use the latest version of StreamerInfo, but under a new name to ease
    15  	// later (if any) debugging.
    16  	StreamerBaseSTL = StreamerInfo
    17  )