ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
▼
core
►
base
►
clingutils
►
cont
►
dictgen
►
foundation
►
gui
►
imt
►
macosx
▼
meta
►
inc
▼
src
TBaseClass.cxx
►
TCheckHashRecursiveRemoveConsistency.h
►
TClass.cxx
TClassGenerator.cxx
TClassRef.cxx
TDataMember.cxx
TDataType.cxx
TDictAttributeMap.cxx
TDictionary.cxx
TEnum.cxx
TEnumConstant.cxx
TFunction.cxx
TFunctionTemplate.cxx
►
TGenericClassInfo.cxx
TGlobal.cxx
►
TInterpreter.cxx
TIsAProxy.cxx
►
TListOfDataMembers.cxx
►
TListOfEnums.cxx
TListOfEnumsWithLock.cxx
TListOfFunctions.cxx
TListOfFunctionTemplates.cxx
TMethod.cxx
TMethodArg.cxx
►
TMethodCall.cxx
►
TProtoClass.cxx
TRealData.cxx
TSchemaRule.cxx
TSchemaRuleSet.cxx
►
TStatusBitsChecker.cxx
►
TStreamerElement.cxx
►
TViewPubDataMembers.cxx
►
TViewPubDataMembers.h
►
TViewPubFunctions.cxx
►
TViewPubFunctions.h
TVirtualStreamerInfo.cxx
►
metacling
►
multiproc
►
rint
►
testsupport
►
thread
►
unix
►
winnt
►
zip
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
►
tree
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
TClassGenerator.cxx
Go to the documentation of this file.
1
// @(#)root/base:$Id$
2
// Author: Philippe Canal 24/06/2003
3
4
/*************************************************************************
5
* Copyright (C) 1995-2003, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
/** \class TClassGenerator
13
Objects following this interface can be passed onto the TROOT object
14
to implement a user customized way to create the TClass objects.
15
16
Use TROOT::AddClassGenerator to register a concrete instance.
17
*/
18
19
20
#include "
TClassGenerator.h
"
21
22
ClassImp
(
TClassGenerator
);
23
24
//////////////////////////////////////////////////////////////////////////
25
TClass
*
TClassGenerator::GetClass
(
const
char
* classname,
Bool_t
load,
Bool_t
/* silent */
)
26
{
27
// Default implementation for backward compatibility ignoring the value of 'silent'
28
return
GetClass
(classname,load);
29
}
30
31
//////////////////////////////////////////////////////////////////////////
32
TClass
*
TClassGenerator::GetClass
(
const
std::type_info&
typeinfo
,
Bool_t
load,
Bool_t
/* silent */
)
33
{
34
// Default implementation for backward compatibility ignoring the value of 'silent'
35
return
GetClass
(
typeinfo
,load);
36
}
ClassImp
#define ClassImp(name)
Definition
Rtypes.h:377
TClassGenerator.h
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TClassGenerator
Objects following this interface can be passed onto the TROOT object to implement a user customized w...
Definition
TClassGenerator.h:28
TClassGenerator::GetClass
virtual TClass * GetClass(const char *classname, Bool_t load)=0
TClass
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition
TClass.h:81
bool
core
meta
src
TClassGenerator.cxx
ROOT v6-32 - Reference Guide Generated on Wed Apr 2 2025 08:24:21 (GVA Time) using Doxygen 1.10.0