Warning, /include/Geant4/tools/rroot/clss is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_rroot_clss
0005 #define tools_rroot_clss
0006
0007 #include <string>
0008
0009 namespace tools {
0010 namespace rroot {
0011
0012 inline const std::string& TH1F_cls(){
0013 static const std::string s_v("TH1F");
0014 return s_v;
0015 }
0016
0017 inline const std::string& TH1D_cls(){
0018 static const std::string s_v("TH1D");
0019 return s_v;
0020 }
0021
0022 inline const std::string& TH2F_cls(){
0023 static const std::string s_v("TH2F");
0024 return s_v;
0025 }
0026
0027 inline const std::string& TH2D_cls(){
0028 static const std::string s_v("TH2D");
0029 return s_v;
0030 }
0031
0032 inline const std::string& TH3D_cls(){
0033 static const std::string s_v("TH3D");
0034 return s_v;
0035 }
0036
0037 inline const std::string& TProfile_cls(){
0038 static const std::string s_v("TProfile");
0039 return s_v;
0040 }
0041
0042 inline const std::string& TProfile2D_cls(){
0043 static const std::string s_v("TProfile2D");
0044 return s_v;
0045 }
0046
0047 inline const std::string& TDirectory_cls(){
0048 static const std::string s_v("TDirectory");
0049 return s_v;
0050 }
0051
0052 inline const std::string& TGeoManager_cls(){
0053 static const std::string s_v("TGeoManager");
0054 return s_v;
0055 }
0056
0057 inline const std::string& TList_cls(){
0058 static const std::string s_v("TList");
0059 return s_v;
0060 }
0061
0062 inline const std::string& TNamed_cls(){
0063 static const std::string s_v("TNamed");
0064 return s_v;
0065 }
0066
0067 }}
0068
0069 #endif