ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MCGIDI_version.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MCGIDI_version.cc
1 /*
2 # <<BEGIN-copyright>>
3 # <<END-copyright>>
4 */
5 
6 #include "MCGIDI.h"
7 
8 static char versionStr[64] = "";
9 
10 /*
11 ========================================================================
12 */
13 const char *MCGIDI_version( void ) {
14 
15  if( versionStr[0] == 0 ) sprintf( versionStr, "MCGIDI version %d.%d.%d", MCGIDI_VERSION_MAJOR, MCGIDI_VERSION_MINOR, MCGIDI_VERSION_PATCHLEVEL );
16  return( versionStr );
17 }
18 /*
19 ========================================================================
20 */
21 int MCGIDI_versionMajor( void ) { return( MCGIDI_VERSION_MAJOR ); }
22 int MCGIDI_versionMinor( void ) { return( MCGIDI_VERSION_MINOR ); }