Xephyr  0.0
XeVersion.h
1 #ifndef XeVersion_h
2 #define XeVersion_h
3 
4 #include <iostream>
5 #include <string.h>
6 #include <RVersion.h>
7 
8 #if ROOT_VERSION_CODE < ROOT_VERSION(5,34,20)
9  #define STATIC_CONST static const
10 #else
11  #define STATIC_CONST static constexpr
12 #endif
13 
14 using namespace std;
15 
16 
17 class XeVersion {
18  public :
19  ~XeVersion(){}
20  XeVersion(){
21  string tab=" ";
22  string XephyrVersion = "2.0";
23  string XephyrDate = "14-Aug-2018";
24  cout<<endl<<endl
25  <<tab<<"================================ Welcome to Xephyr ================================"
26  <<endl << endl
27  <<tab<<" Version "<<XephyrVersion<<" dated "<<XephyrDate
28  <<tab<<", compiled with ROOT "<<ROOT_RELEASE<<endl << endl
29  <<tab<<" Intrepidly coded by: D. Lellouche, H. Landsman, J. Mossbacher, A. Manfredini" << endl
30  <<tab<<"=================================================================================="
31  <<endl<<endl;
32  }
33 
34 };
35 
36 #endif
Definition: XeVersion.h:17