Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:13:56

0001 /*!
0002  * \file Version.h
0003  *
0004  * Version metadata for VecGeom.
0005  */
0006 
0007 #ifndef VECGEOM_BASE_VERSION_H_
0008 #define VECGEOM_BASE_VERSION_H_
0009 
0010 /*! VecGeom version. Encoded as a big-endian hexidecimal with one byte per
0011  * component: (major * 256 + minor) * 256 + patch. */
0012 #define VECGEOM_VERSION 0x010209
0013 
0014 static const char vecgeom_version[]    = "1.2.9";
0015 static const int vecgeom_version_major = 1;
0016 static const int vecgeom_version_minor = 2;
0017 static const int vecgeom_version_patch = 9;
0018 
0019 #endif /* VECGEOM_VERSION_H_ */