|
|
|||
File indexing completed on 2026-09-15 09:27:34
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 0x020000 0013 0014 static const char vecgeom_version[] = "2.0.0"; 0015 static const int vecgeom_version_major = 2; 0016 static const int vecgeom_version_minor = 0; 0017 static const int vecgeom_version_patch = 0; 0018 0019 #endif /* VECGEOM_VERSION_H_ */
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|