Files
geant4/source/analysis/g4tools/include/tools/rroot/clss
T
2020-12-04 12:30:43 +01:00

70 lines
1.3 KiB
Plaintext

// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_rroot_clss
#define tools_rroot_clss
#include <string>
namespace tools {
namespace rroot {
inline const std::string& TH1F_cls(){
static const std::string s_v("TH1F");
return s_v;
}
inline const std::string& TH1D_cls(){
static const std::string s_v("TH1D");
return s_v;
}
inline const std::string& TH2F_cls(){
static const std::string s_v("TH2F");
return s_v;
}
inline const std::string& TH2D_cls(){
static const std::string s_v("TH2D");
return s_v;
}
inline const std::string& TH3D_cls(){
static const std::string s_v("TH3D");
return s_v;
}
inline const std::string& TProfile_cls(){
static const std::string s_v("TProfile");
return s_v;
}
inline const std::string& TProfile2D_cls(){
static const std::string s_v("TProfile2D");
return s_v;
}
inline const std::string& TDirectory_cls(){
static const std::string s_v("TDirectory");
return s_v;
}
inline const std::string& TGeoManager_cls(){
static const std::string s_v("TGeoManager");
return s_v;
}
inline const std::string& TList_cls(){
static const std::string s_v("TList");
return s_v;
}
inline const std::string& TNamed_cls(){
static const std::string s_v("TNamed");
return s_v;
}
}}
#endif