CMS 3D CMS Logo

classNameFinder.h
Go to the documentation of this file.
1 #ifndef classNameFinder_h
2 #define classNameFinder_h
3 
4 #include <string>
5 #include <typeinfo>
6 #include <cxxabi.h>
7 
8 template <class T>
10  int status2 = 0;
11  char *dm2 = abi::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status2);
12  std::string s2 = "failed demangle";
13  if (status2 == 0) {
14  s2 = std::string(dm2);
15  }
16  return (fName + std::string("< ") + s2 + std::string(" >"));
17 }
18 
19 template <class T>
21  int status2 = 0;
22  char *dm2 = abi::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status2);
23  std::string s2 = "failed demangle";
24  if (status2 == 0) {
25  s2 = std::string(dm2);
26  }
27  return s2;
28 }
29 
30 #endif
MainPageGenerator.fName
fName
Definition: MainPageGenerator.py:301
templateNameFinder
std::string templateNameFinder()
Definition: classNameFinder.h:20
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
classNameFinder
std::string classNameFinder(std::string fName)
Definition: classNameFinder.h:9
T
long double T
Definition: Basic3DVectorLD.h:48
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17