32using std::string, std::string_view, std::vector, std::set;
38 struct ShuttingDownSignaler :
public T {
41 ShuttingDownSignaler() =
default;
42 ShuttingDownSignaler(T &&in) : T(std::
move(in)) {}
59 if (
name.compare(0,5,
"std::")==0) {
65 for(
size_t i = 5; i <
name.length(); ++i) {
66 if (
name[i] ==
'<')
break;
83 if (i+1<
name.length() &&
name[i+1]==
':') {
97 if (i+1<
name.length() &&
name[i+1]==
':') {
142 return EComplexType::kFloat;
145 return EComplexType::kDouble;
148 return EComplexType::kInt;
151 return EComplexType::kLong;
154 return EComplexType::kNone;
209 if (fElements[0].empty())
return 0;
210 int numb = fElements.size();
211 if (!fElements[
numb-1].empty() && fElements[
numb-1][0]==
'*') --
numb;
213 if ( fNestedLocation ) {
219 int kind =
STLKind(fElements[0]);
236 if (k<0) kind = -kind;
242 if(kind>2) kind = - kind;
262 int narg = fElements.size();
273 if (fElements[
narg-1].empty() ==
false &&
274 (fElements[
narg-1][0]==
'*'
275 || fElements[
narg-1][0]==
'&'
276 || fElements[
narg-1][0]==
'['
277 || 0 == fElements[
narg-1].compare(0,6,
"const*")
278 || 0 == fElements[
narg-1].compare(0,6,
"const&")
279 || 0 == fElements[
narg-1].compare(0,6,
"const[")
280 || 0 == fElements[
narg-1].compare(
"const")
289 if (fNestedLocation)
narg--;
294 const int kind =
STLKind(fElements[0]);
300 if (!fElements[0].empty() &&
tailLoc) {
303 fElements[0].clear();
358 if (
IsDefComp( fElements[
iall].c_str(), fElements[1].c_str() ) ) {
403 if (
IsDefPred( fElements[
iall].c_str(), fElements[1].c_str() ) ) {
410 if (
IsDefHash( fElements[
iall-1].c_str(), fElements[1].c_str() ) ) {
418 unsigned int offset = (0==
strncmp(
"const ",fElements[0].c_str(),6)) ? 6 : 0;
420 if (0 ==
strcmp(fElements[0].c_str()+
offset,
"__shared_ptr"))
423 static const std::string
sharedPtrDef = std::to_string(__gnu_cxx::__default_lock_policy);
425 static const std::string
sharedPtrDef = std::to_string(2);
435 for (
int i=1;i<
narg; i++) {
436 if (!
strchr(fElements[i].c_str(),
'<')) {
438 unsigned int offset = (0==
strncmp(
"const ",fElements[i].c_str(),6)) ? 6 : 0;
465 if (!fElements[0].empty()) {
answ += fElements[0];
answ +=
"<";}
498 {
for (
int i=1;i<
narg-1; i++) {
answ += fElements[i];
answ+=
",";} }
501 if (!fElements[0].empty()) {
502 if (
answ.at(
answ.size()-1) ==
'>') {
508 if (fNestedLocation) {
511 answ += fElements[fNestedLocation];
521 return !fElements[0].empty();
530 if (
type.length() == 0)
533 if (
type.compare(0,6,
"const ")==0) {
offset += 6; }
540 static const char *
stls[] =
541 {
"any",
"vector",
"list",
"deque",
"map",
"multimap",
"set",
"multiset",
"bitset",
542 "forward_list",
"unordered_set",
"unordered_multiset",
"unordered_map",
"unordered_multimap",
nullptr};
543 static const size_t stllen[] =
544 { 3, 6, 4, 5, 3, 8, 3, 8, 6,
545 12, 13, 18, 13, 18, 0};
561 for (
int k = 1;
stls[k]; ++k) {
577 static const char stln[] =
579 { 1, 1, 1, 1, 3, 3, 2, 2, 1,
582 assert(std::size_t(kind) <
sizeof(
stln) &&
"index is out of bounds");
592 for(
size_t i = 0; i < full.length(); ++i) {
594 case '<': { ++level;
break; }
596 if (level == 0)
return i;
601 if (level == 0)
return i;
607 return full.length();
614 return pos +
findNameEnd( {full.data()+pos,full.length()-pos} );
626 if (
a==
"alloc")
return true;
627 if (
a==
"__default_alloc_template<true,0>")
return true;
628 if (
a==
"__malloc_alloc_template<0>")
return true;
631 if (
a.compare(0,
alloclen,
"allocator<") != 0) {
638 string_view k = classname;
641 if (
a.compare(0,k.length(),k) != 0) {
654 a.remove_prefix(end);
656 a.remove_prefix(k.length());
659 if (
a.compare(0,1,
">")!=0 &&
a.compare(0,2,
" >")!=0) {
680 if (
a.compare(0,
alloclen,
"allocator<") != 0) {
688 if (
a.compare(0,
pairlen,
"pair<") != 0) {
694 if (
a.compare(0,
constlen+1,
"const ") == 0) {
702 if (k.compare(0,
constlen+1,
"const ") == 0) {
706 if (
a.compare(0,k.length(),k) != 0) {
727 a.remove_prefix(end);
729 size_t end = k.length();
730 if ( (
a[end-1] ==
'*') ||
a[end]==
' ' ) {
736 a.remove_prefix(end);
748 if (
a.compare(0,
v.length(),
v) != 0) {
761 a.remove_prefix(end);
763 a.remove_prefix(
v.length());
766 if (
a.compare(0,1,
">")!=0 &&
a.compare(0,2,
" >")!=0) {
789 string k = classname;
790 if (
c.compare(pos,k.length(),k) != 0) {
810 if (
c.compare(pos,1,
">")!=0 &&
c.compare(pos,2,
" >")!=0) {
876 std::string first, second;
880 if (!second.empty() && second.back() ==
'>')
922 static const char*
ulonglong_s =
"unsigned long long";
950 else if ( *
cursor ==
':' ) {
966 const char *t = full.c_str();
967 const unsigned int tlen( full.size() );
984 bool isArray = ( (*starloc)==
']' );
988 isArray = ! ( (*starloc)==
'[' );
989 }
else if ( (*(
starloc-1))==
't' ) {
1060 }
else if (full.find(
"basic_string") != std::string::npos) {
1071 if ( full[
offset] ==
'>' ) {
1073 }
else if (full[
offset] ==
',') {
1075 if (full.compare(
offset, 5,
"std::") == 0) {
1082 if ( full[
offset] ==
'>') {
1084 }
else if (full[
offset] ==
' ' && full[
offset+1] ==
'>') {
1087 }
else if (full[
offset] ==
',') {
1089 if (full.compare(
offset, 5,
"std::") == 0) {
1092 static const char*
allocator_s =
"allocator<char>";
1096 if ( full[
offset] ==
'>') {
1098 }
else if (full[
offset] ==
' ' && full[
offset+1] ==
'>') {
1119 output.push_back(
string());
1122 output.push_back(
"const std::string");
1124 output.push_back(
"const string");
1128 output.push_back(
"std::string");
1130 output.push_back(
"string");
1133 if (
offset < full.length()) {
1136 string right( full.substr(
offset) );
1139 output.back().append(right.c_str()+1);
1150 unsigned int offset = (0==
strncmp(
"const ",full.c_str(),6)) ? 6 : 0;
1155 if ( !full.empty() ) {
1159 const char *
c =
strchr(full.c_str(),
'<');
1162 output.push_back(
string(full,0,
c - full.c_str()));
1171 }
else if (*
cursor ==
')') {
1178 case '<': ++level;
break;
1179 case '>': --level;
break;
1189 if (*(
cursor-1) ==
' ') {
1201 }
else if (level >= 0) {
1207 output.push_back(
string());
1234 static const char* remove[] = {
"class",
"const",
"volatile",
nullptr};
1237 for (
int k=0; remove[k]; ++k) {
1252 if (!
isalnum(
c[ 1]) &&
c[ 1] !=
'_')
continue;
1256 int n = (
mode) ? 999 : 1;
1259 for (
int k=0; k<
n && remove[k]; k++) {
1263 if (
strncmp(remove[k],
c,rlen))
continue;
1266 if (
isalnum(
c[rlen]) ||
c[rlen]==
'_' ||
c[rlen]==
'$')
continue;
1268 c+=rlen-1;
done = 1;
break;
1273 kbl = (!
isalnum(
c[ 0]) &&
c[ 0]!=
'_' &&
c[ 0]!=
'$' &&
c[0]!=
'[' &&
c[0]!=
']' &&
c[0]!=
'-' &&
c[0]!=
'@');
1277 if (*
c ==
'<' || *
c ==
'(')
lev++;
1279 if (!
strchr(
"*&:._$ []-@",*
c))
break;
1287 if (*
c ==
'>' || *
c ==
')')
lev--;
1327 unsigned char offset = 0;
1329 static const char *names[] = {
"CallFunc_t",
"ClassInfo_t",
"BaseClassInfo_t",
1330 "DataMemberInfo_t",
"FuncTempInfo_t",
"MethodInfo_t",
"MethodArgInfo_t",
1331 "TypeInfo_t",
"TypedefInfo_t",
nullptr};
1333 for(
int k=1;names[k];k++) {
if (
strcmp(
type+
offset,names[k])==0)
return true;}
1361 if (
type.compare(0,6,
"const ",6) == 0)
1362 type.remove_prefix(6);
1364 while(
type[
type.length()-1]==
'*' ||
1367 type.remove_suffix(1);
1380 auto pos =
type.find(
'<');
1384 for (
decltype(
type.length()) level = 1;
c <
type.length(); ++
c) {
1385 if (
type[
c] ==
'<') ++level;
1386 if (
type[
c] ==
'>') --level;
1387 if (level == 0)
break;
1389 if (
c != (
type.length()-1) ) {
1420 classname +=
StdLen( classname );
1421 if (
strcmp(classname,
"string")==0 )
return true;
1422 if (
strncmp(classname,
"bitset<",
strlen(
"bitset<"))==0)
return true;
1423 if (
IsStdPair(classname) )
return true;
1424 if (
strcmp(classname,
"allocator")==0)
return true;
1425 if (
strncmp(classname,
"allocator<",
strlen(
"allocator<"))==0)
return true;
1426 if (
strncmp(classname,
"greater<",
strlen(
"greater<"))==0)
return true;
1427 if (
strncmp(classname,
"less<",
strlen(
"less<"))==0)
return true;
1428 if (
strncmp(classname,
"equal_to<",
strlen(
"equal_to<"))==0)
return true;
1429 if (
strncmp(classname,
"hash<",
strlen(
"hash<"))==0)
return true;
1430 if (
strncmp(classname,
"auto_ptr<",
strlen(
"auto_ptr<"))==0)
return true;
1432 if (
strncmp(classname,
"vector<",
strlen(
"vector<"))==0)
return true;
1433 if (
strncmp(classname,
"list<",
strlen(
"list<"))==0)
return true;
1434 if (
strncmp(classname,
"forward_list<",
strlen(
"forward_list<"))==0)
return true;
1435 if (
strncmp(classname,
"deque<",
strlen(
"deque<"))==0)
return true;
1436 if (
strncmp(classname,
"map<",
strlen(
"map<"))==0)
return true;
1437 if (
strncmp(classname,
"multimap<",
strlen(
"multimap<"))==0)
return true;
1438 if (
strncmp(classname,
"set<",
strlen(
"set<"))==0)
return true;
1439 if (
strncmp(classname,
"multiset<",
strlen(
"multiset<"))==0)
return true;
1440 if (
strncmp(classname,
"unordered_set<",
strlen(
"unordered_set<"))==0)
return true;
1441 if (
strncmp(classname,
"unordered_multiset<",
strlen(
"unordered_multiset<"))==0)
return true;
1442 if (
strncmp(classname,
"unordered_map<",
strlen(
"unordered_map<"))==0)
return true;
1443 if (
strncmp(classname,
"unordered_multimap<",
strlen(
"unordered_multimap<"))==0)
return true;
1444 if (
strncmp(classname,
"bitset<",
strlen(
"bitset<"))==0)
return true;
1445 if (
strncmp(classname,
"ROOT::VecOps::RVec<",
strlen(
"ROOT::VecOps::RVec<"))==0)
return true;
1679 if ((next+5)==
len ||
tname[next+5] ==
',' ||
tname[next+5] ==
'>' ||
tname[next+5] ==
'[') {
1682 }
else if (next!=
len &&
tname[next] !=
'*' &&
tname[next] !=
'&') {
1696 if ((next+5)==
len ||
tname[next+5] ==
' ' ||
tname[next+5] ==
'*' ||
tname[next+5] ==
'&' ||
tname[next+5] ==
',' ||
tname[next+5] ==
'>' ||
tname[next+5] ==
'[') {
1705 if ((next+5)==
len ||
tname[next+5] ==
' ' ||
tname[next+5] ==
'*' ||
tname[next+5] ==
'&' ||
tname[next+5] ==
',' ||
tname[next+5] ==
'>' ||
tname[next+5] ==
'[') {
1804 "basic_istringstream",
1807 "basic_ostringstream",
1811 "basic_stringstream",
1840 "istreambuf_iterator",
1849 "localedef utility",
1866 "moneypunct_byname",
1878 "ostreambuf_iterator",
1884 "pointer_to_binary_function",
1885 "pointer_to_unary_function",
1889 "raw_storage_iterator",
1908 "unordered_multimap",
1909 "unordered_multiset",
1971 std::vector<std::unique_ptr<NameCleanerForIO>> fArgumentNodes = {};
1973 bool fHasChanged =
false;
1977 if (!
mother)
return false;
1979 while (
nullptr !=
mother){
1993 if (
clName.back() !=
'>') {
1998 std::vector<std::string>
v;
2006 [](std::string& arg){
return (!arg.empty() && arg.front() ==
':');});
2011 for (
int i=
length-1;i>-1;i--) {
2016 }
else if (
c ==
'>') {
2044 unsigned int nargs =
v.size() - 2;
2045 for (
unsigned int i=0;i<
nargs;++i) {
2054 std::string
name(fName);
2056 if (fArgumentNodes.empty())
return name;
2061 name = fArgumentNodes.front()->ToString();
2072 name = fArgumentNodes.front()->ToString();
2079 for (
auto& node : fArgumentNodes) {
2080 name += node->ToString() +
",";
2081 fHasChanged |= node->HasChanged();
2084 name +=
name.back() ==
'>' ?
" >" :
">";
2089 const std::vector<std::unique_ptr<NameCleanerForIO>>*
GetChildNodes()
const {
return &fArgumentNodes;}
2128 for (ndim = 1;ndim <=5 ; ndim++) {
2155struct FunctionSplitInfo {
2157 std::string fReturnType;
2160 std::string fScopeName;
2163 std::string fFunctionName;
2167 std::vector<std::string> fFunctionTemplateArguments;
2170 std::vector<std::string> fFunctionParameters;
2180 for (std::size_t pos = 0, end =
haystack.length(); pos < end; ++pos) {
2183 if (
needles.find(
c) != std::string_view::npos)
2192 case '<':
expected.emplace(
'>');
break;
2193 case '(':
expected.emplace(
')');
break;
2194 case '[':
expected.emplace(
']');
break;
2197 return std::string_view::npos;
2207 if (
posColumn == std::string_view::npos)
2208 return std::string_view::npos;
2212 return std::string_view::npos;
2220 return std::string_view::npos;
2225 while (!str.empty() && std::isspace(str[0]))
2226 str.remove_prefix(1);
2227 while (!str.empty() && std::isspace(str.back()))
2228 str.remove_suffix(1);
2236 return std::string(
sv.data(),
sv.length());
2256 if (
posWS == std::string_view::npos)
2278 if (
posScope == std::string_view::npos)
2292 result.fFunctionTemplateArguments.clear();
2305 if (
posComma == std::string_view::npos) {
2318 result.fFunctionParameters.clear();
2319 if (
posArgs != std::string_view::npos) {
2321 std::string_view params =
decl.substr(
posArgs + 1);
2328 if (
posComma == std::string_view::npos) {
static void R__FindTrailing(std::string &full, std::string &stars)
static void ResolveTypedefImpl(const char *tname, unsigned int len, unsigned int &cursor, bool &modified, std::string &result)
static size_t findNameEnd(const std::string_view full)
static bool IsDefElement(const char *elementName, const char *defaultElementName, const char *classname)
return whether or not 'elementName' is the STL default Element for type 'classname'
static void ResolveTypedefProcessType(const char *tname, unsigned int, unsigned int cursor, bool constprefix, unsigned int start_of_type, unsigned int end_of_type, unsigned int mod_start_of_type, bool &modified, std::string &result)
static void RemoveStd(std::string &name, size_t pos=0)
Remove std:: and any potential inline namespace (well compiler detail namespace.
static size_t StdLen(const std::string_view name)
Return the length, if any, taken by std:: and any potential inline namespace (well compiler detail na...
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t cursor
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h length
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize id
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char mode
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
An helper class to dismount the name and remount it changed whenever necessary.
NameCleanerForIO(const std::string &clName="", TClassEdit::EModType mode=TClassEdit::kNone, NameCleanerForIO *mother=nullptr)
NameCleanerForIO * fMother
const std::string & GetName()
const std::vector< std::unique_ptr< NameCleanerForIO > > * GetChildNodes() const
bool AreAncestorsSTLContOrArray()
A spin mutex-as-code-guard class.
const_iterator begin() const
const_iterator end() const
virtual ~TInterpreterLookupHelper()
std::string ToString(const T &val)
Utility function for conversion to strings.
ROOT::ESTLType STLKind(std::string_view type)
Converts STL container name to number.
bool IsDefComp(const char *comp, const char *classname)
return whether or not 'compare' is the STL default comparator for type 'classname'
std::string ResolveTypedef(const char *tname, bool resolveAll=false)
bool IsStdArray(std::string_view name)
bool IsStdClass(const char *type)
return true if the class belongs to the std namespace
bool IsDefHash(const char *hashname, const char *classname)
return whether or not 'hashname' is the STL default hash for type 'classname'
bool IsStdPair(std::string_view name)
bool IsInterpreterDetail(const char *type)
Return true if the type is one the interpreter details which are only forward declared (ClassInfo_t e...
std::string InsertStd(const char *tname)
bool SplitFunction(std::string_view decl, FunctionSplitInfo &result)
Split a function declaration into its different parts.
std::string GetLong64_Name(const char *original)
Replace 'long long' and 'unsigned long long' by 'Long64_t' and 'ULong64_t'.
bool IsDefPred(const char *predname, const char *classname)
return whether or not 'predname' is the STL default predicate for type 'classname'
char * DemangleTypeIdName(const std::type_info &ti, int &errorCode)
Demangle in a portable way the type id name.
const char * GetUnqualifiedName(const char *name)
Return the start of the unqualified name include in 'original'.
bool IsVectorBool(const char *name)
void Init(TClassEdit::TInterpreterLookupHelper *helper)
ROOT::ESTLType IsSTLCont(std::string_view type)
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container code of cont...
std::string CleanType(const char *typeDesc, int mode=0, const char **tail=nullptr)
Cleanup type description, redundant blanks removed and redundant tail ignored return *tail = pointer ...
std::string ShortType(const char *typeDesc, int mode)
Return the absolute type of typeDesc.
char * DemangleName(const char *mangled_name, int &errorCode)
bool IsArtificial(std::string_view name)
bool GetStdArrayProperties(const char *typeName, std::string &typeNameBuf, std::array< int, 5 > &maxIndices, int &ndim)
std::string GetNameForIO(const std::string &templateInstanceName, TClassEdit::EModType mode=TClassEdit::kNone, bool *hasChanged=nullptr)
int STLArgs(int kind)
Return number of arguments for STL container before allocator.
int GetSplit(const char *type, std::vector< std::string > &output, int &nestedLoc, EModType mode=TClassEdit::kNone)
Stores in output (after emptying it) the split type.
void GetNormalizedName(std::string &norm_name, std::string_view name)
Return the normalized name.
bool IsDefAlloc(const char *alloc, const char *classname)
return whether or not 'allocname' is the STL default allocator for type 'classname'
bool IsUniquePtr(std::string_view name)
bool IsSTLBitset(const char *type)
Return true is the name is std::bitset<number> or bitset<number>
ROOT::ESTLType UnderlyingIsSTLCont(std::string_view type)
Return the type of STL collection, if any, that is the underlying type of the given type.
EComplexType GetComplexType(const char *)
Result of splitting a function declaration into fReturnType fScopeName::fFunctionName<fFunctionTempla...
bool IsTemplate()
Check if the type is a template.
int IsSTLCont(int testAlloc=0) const
type : type name: vector<list<classA,allocator>,allocator> testAlloc: if true, we test allocator,...
TSplitType(const char *type2split, EModType mode=TClassEdit::kNone)
default constructor
std::vector< std::string > fElements
ROOT::ESTLType IsInSTL() const
type : type name: vector<list<classA,allocator>,allocator>[::iterator] result: 0 : not stl container ...
void ShortType(std::string &answer, int mode)
Return the absolute type of typeDesc into the string answ.