Logo ROOT   6.07/09
Reference Guide
TProtoClass.cxx
Go to the documentation of this file.
1 // @(#)root/meta:$
2 // Author: Axel Naumann 2014-05-02
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2014, 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 TProtoClass
13 Persistent version of a TClass.
14 */
15 
16 #include "TProtoClass.h"
17 
18 #include "TBaseClass.h"
19 #include "TClass.h"
20 #include "TDataMember.h"
21 #include "TEnum.h"
22 #include "TInterpreter.h"
23 #include "TList.h"
24 #include "TListOfDataMembers.h"
25 #include "TListOfEnums.h"
26 #include "TRealData.h"
27 #include "TError.h"
28 
29 #include <cassert>
30 
31 ////////////////////////////////////////////////////////////////////////////////
32 /// Initialize a TProtoClass from a TClass.
33 
35  TNamed(*cl), fBase(cl->GetListOfBases()),
36  fEnums(cl->GetListOfEnums()), fSizeof(cl->Size()), fCheckSum(cl->fCheckSum),
37  fCanSplit(cl->fCanSplit), fStreamerType(cl->fStreamerType), fProperty(cl->fProperty),
38  fClassProperty(cl->fClassProperty)
39 {
40  if (cl->Property() & kIsNamespace){
41  //fData=new TListOfDataMembers();
42  fEnums=nullptr;
43  //fPRealData=nullptr;
45  return;
46  }
47  TListOfEnums *enums = dynamic_cast<TListOfEnums*>(fEnums);
48  if (enums && !enums->fIsLoaded) {
49  // Make sure all the enum information is loaded
50  enums->Load();
51  }
52  // initialize list of data members (fData)
53  TList * dataMembers = cl->GetListOfDataMembers();
54  if (dataMembers && dataMembers->GetSize() > 0) {
55  fData.reserve(dataMembers->GetSize() );
56  for (auto * obj : *dataMembers) {
57  TDataMember * dm = dynamic_cast<TDataMember*>(obj);
58  fData.push_back(dm);
59  }
60  }
61 
62  fPRealData.reserve(100);
63 
64  if (!cl->GetCollectionProxy()) {
65  // Build the list of RealData before we access it:
66  cl->BuildRealData(0, true /*isTransient*/);
67  // The data members are ordered as follows:
68  // - this class's data members,
69  // - foreach base: base class's data members.
70  // fPRealData encodes all TProtoRealData objects with a
71  // TObjString to signal a new class.
72  TClass* clCurrent = cl;
73  fDepClasses.push_back(cl->GetName() );
74  TRealData* precRd = nullptr;
75  for (auto realDataObj: *cl->GetListOfRealData()) {
76  TRealData *rd = (TRealData*)realDataObj;
77  if (!precRd) precRd = rd;
78  TClass* clRD = rd->GetDataMember()->GetClass();
79  TProtoRealData protoRealData(rd);
80  if (clRD != clCurrent) {
81  // here I have a new class
82  fDepClasses.push_back(clRD->GetName() );
83  clCurrent = clRD;
84  protoRealData.fClassIndex = fDepClasses.size()-1;
85  //protoRealData.fClass = clRD->GetName();
86  //TObjString *clstr = new TObjString(clRD->GetName());
87  if (rd->TestBit(TRealData::kTransient)) {
88  //clstr->SetBit(TRealData::kTransient);
89  protoRealData.SetFlag(TProtoRealData::kIsTransient,true);
90  }
91  else
92  protoRealData.SetFlag(TProtoRealData::kIsTransient,false);
93 
94  // fPRealData->AddLast(clstr);
95  precRd = rd;
96  }
97  //fPRealData->AddLast(new TProtoRealData(rd));
98  fPRealData.push_back(protoRealData);
99  }
100 
101  if (gDebug > 2) {
102  for (auto data : fPRealData) {
103  // const auto classType = dataPtr->IsA();
104  // const auto dataName = data.fName;
105  // const auto dataClass = data.fClass;
106  // Info("TProtoClass","Data is a protorealdata: %s - class %s - transient %d", dataName.Data(),dataClass.Data(),data.fIsTransient);
107  //if (!dataClass.IsNull()
108  // if (classType == TProtoRealData::Class())
109  // Info("TProtoClass","Data is a protorealdata: %s", dataPtrName);
110  // if (classType == TObjString::Class())
111  // Info("TProtoClass","Data is a objectstring: %s", dataPtrName);
112  // if (dataPtr->TestBit(TRealData::kTransient))
113  // Info("TProtoClass","And is transient");
114  }
115  }
116  }
117 
118  // this crashes
121 }
122 
123 // // conversion of a new TProtoClass from an old TProtoClass
124 // //______________________________________________________________________________
125 // TProtoClass::TProtoClass(TProtoClassOld * pc):
126 // TNamed(pc->GetName(),pc->GetTitle()), fBase(pc->fBase),
127 // fEnums(pc->fEnums), fSizeof(pc->fSizeof), fCanSplit(pc->fCanSplit),
128 // fStreamerType(pc->fStreamerType), fProperty(pc->fProperty),
129 // fClassProperty(pc->fClassProperty), fOffsetStreamer( pc->fOffsetStreamer)
130 // {
131 
132 // fBase = (pc->fBase) ? (TList*) pc->fBase->Clone() : 0;
133 // //fData = (pc->fData) ? (TList*) pc->fData->Clone() : 0;
134 // fEnums = (pc->fEnums) ? (TList*) pc->fEnums->Clone() : 0;
135 
136 // // initialize list of data members (fData)
137 // TList * dataMembers = pc->fData;
138 // if (dataMembers && dataMembers->GetSize() > 0) {
139 // fData.reserve(dataMembers->GetSize() );
140 // for (auto * obj : *dataMembers) {
141 // TDataMember * dm = dynamic_cast<TDataMember*>(obj);
142 // if (dm) {
143 // TDataMember * dm2 = (TDataMember *) dm->Clone();
144 // if (dm2) fData.push_back(dm2);
145 // }
146 // }
147 // }
148 
149 // fPRealData.reserve(100);
150 
151 // TString className;
152 // for (auto dataPtr : *(pc->fPRealData) ) {
153 
154 // const auto classType = dataPtr->IsA();
155 // if (classType == TObjString::Class()) {
156 // className = dataPtr->GetName();
157 // }
158 // else if (classType == TProtoClass::TProtoRealData::Class()) {
159 // TProtoRealData protoRealData;
160 // TProtoClass::TProtoRealData * oldData= ( TProtoClass::TProtoRealData * )dataPtr;
161 // TClass * cl = TClass::GetClass(className);
162 // //protoRealData.fName = dataPtr->GetName();
163 // //TObject * obj = cl->GetListOfDataMembers()->FindObject( );
164 // protoRealData.fDMIndex = DataMemberIndex(cl, dataPtr->GetName() );
165 // // protoRealData.fTitle = dataPtr->GetTitle();
166 // //protoRealData.fClass = className;
167 // className.Clear();
168 // protoRealData.fIsTransient = dataPtr->TestBit(TRealData::kTransient);
169 // protoRealData.fOffset = oldData->GetOffset();
170 // protoRealData.fIsObject = dataPtr->TestBit(BIT(15));
171 // fPRealData.push_back(protoRealData);
172 // }
173 // }
174 // }
175 
176 ////////////////////////////////////////////////////////////////////////////////
177 /// Destructor.
178 
180 {
181  Delete();
182 }
183 
184 ////////////////////////////////////////////////////////////////////////////////
185 /// Delete the containers that are usually owned by their TClass.
186 /// if (fPRealData) fPRealData->Delete(opt);
187 /// delete fPRealData; fPRealData = 0;
188 
189 void TProtoClass::Delete(Option_t* opt /*= ""*/) {
190  if (fBase) fBase->Delete(opt);
191  delete fBase; fBase = 0;
192 
193  for (auto dm: fData) {
194  delete dm;
195  }
196 
197  if (fEnums) fEnums->Delete(opt);
198  delete fEnums; fEnums = 0;
199 
200  if (gErrorIgnoreLevel==-2) printf("Delete the protoClass %s \n",GetName());
201 }
202 
203 ////////////////////////////////////////////////////////////////////////////////
204 /// Move data from this TProtoClass into cl.
205 
207  if (cl->fRealData || cl->fBase || cl->fData || cl->fEnums.load()
208  || cl->fSizeof != -1 || cl->fCanSplit >= 0
209  || cl->fProperty != (-1) ) {
210 
211  if (cl->GetCollectionType() != ROOT::kNotSTL) {
212  // We are in the case of collection, duplicate dictionary are allowed
213  // (and even somewhat excepted since they can be auto asked for).
214  // They do not always have a TProtoClass for them. In particular
215  // the one that are pre-generated in the ROOT build (in what was once
216  // called the cintdlls) do not have a pcms, neither does vector<string>
217  // which is part of libCore proper.
218  if (gDebug > 0)
219  Info("FillTClass", "Returning w/o doing anything. %s is a STL collection.",cl->GetName());
220  return kTRUE;
221  }
222  if (cl->Property() & kIsNamespace) {
223  if (gDebug > 0)
224  Info("FillTClass", "Returning w/o doing anything. %s is a namespace.",cl->GetName());
225  return kTRUE;
226  }
227  Error("FillTClass", "TClass %s already initialized!", cl->GetName());
228  return kFALSE;
229  }
230  if (gDebug > 1) Info("FillTClass","Loading TProtoClass for %s - %s",cl->GetName(),GetName());
231 
232  if (fPRealData.size() > 0) {
233 
234  // A first loop to retrieve the mother classes before starting to
235  // fill this TClass instance. This is done in order to avoid recursions
236  // for example in presence of daughter and mother class present in two
237  // dictionaries compiled in two different libraries which are not linked
238  // one with each other.
239  for (auto element: fPRealData) {
240  //if (element->IsA() == TObjString::Class()) {
241  if (element.IsAClass() ) {
242  if (gDebug > 1) Info("","Treating beforehand mother class %s",GetClassName(element.fClassIndex));
243  //int autoloadingOldval=gInterpreter->SetClassAutoloading(false);
245 
246  TClass::GetClass(GetClassName(element.fClassIndex));
247 
248  //gInterpreter->SetClassAutoloading(autoloadingOldval);
249  }
250  }
251  }
252 
253 
254  //this->Dump();
255 
256  // Copy only the TClass bits.
257  // not bit 13 and below and not bit 24 and above, just Bits 14 - 23
258  UInt_t newbits = TestBits(0x00ffc000);
259  cl->ResetBit(0x00ffc000);
260  cl->SetBit(newbits);
261 
262  cl->fName = this->fName;
263  cl->fTitle = this->fTitle;
264  cl->fBase = fBase;
265 
266  // fill list of data members in TClass
267  //if (cl->fData) { cl->fData->Delete(); delete cl->fData; }
268  cl->fData = new TListOfDataMembers(fData);
269  // for (auto * dataMember : fData) {
270  // //printf("add data member for class %s - member %s \n",GetName(), dataMember->GetName() );
271  // cl->fData->Add(dataMember);
272  // }
273  // // set loaded bit to true to avoid re-loading the data members
274  // cl->fData->SetIsLoaded();*
275 
276  //cl->fData = (TListOfDataMembers*)fData;
277 
278  // The TDataMember were passed along.
279  fData.clear();
280 
281  // We need to fill enums one by one to initialise the internal map which is
282  // transient
283  {
284  auto temp = new TListOfEnums();
285  if (fEnums) {
286  for (TObject* enumAsTObj : *fEnums){
287  temp->Add((TEnum*) enumAsTObj);
288  }
289  // We did not transfer the container itself, let remove it from memory without deleting its content.
290  fEnums->Clear();
291  delete fEnums;
292  fEnums = nullptr;
293  }
294  cl->fEnums = temp;
295  }
296 
297  cl->fSizeof = fSizeof;
298  cl->fCheckSum = fCheckSum;
299  cl->fCanSplit = fCanSplit;
300  cl->fProperty = fProperty;
303 
304  // Update pointers to TClass
305  if (cl->fBase) {
306  for (auto base: *cl->fBase) {
307  ((TBaseClass*)base)->SetClass(cl);
308  }
309  }
310  if (cl->fData) {
311  for (auto dm: *cl->fData) {
312  ((TDataMember*)dm)->SetClass(cl);
313  }
314  ((TListOfDataMembers*)cl->fData)->SetClass(cl);
315  }
316  if (cl->fEnums.load()) {
317  for (auto en: *cl->fEnums) {
318  ((TEnum*)en)->SetClass(cl);
319  }
320  ((TListOfEnums*)cl->fEnums)->SetClass(cl);
321  }
322 
323 
324  TClass* currentRDClass = cl;
325  TRealData * prevRealData = 0;
326  int prevLevel = 0;
327  bool first = true;
328  if (fPRealData.size() > 0) {
329  for (auto element: fPRealData) {
330  //if (element->IsA() == TObjString::Class()) {
331  if (element.IsAClass() ) {
332  // We now check for the TClass entry, w/o loading. Indeed we did that above.
333  // If the class is not found, it means that really it was not selected and we
334  // replace it with an empty placeholder with the status of kForwardDeclared.
335  // Interactivity will be of course possible but if IO is attempted, a warning
336  // will be issued.
338 
339  // Disable autoparsing which might be triggered by the use of ResolvedTypedef
340  // and the fallback new TClass() below.
341  currentRDClass = TClass::GetClass(GetClassName(element.fClassIndex), false /* Load */ );
342  //printf("element is a class - name %s - index %d %s \n ",currentRDClass->GetName(), element.fClassIndex, GetClassName(element.fClassIndex) );
343  if (!currentRDClass && !element.TestFlag(TProtoRealData::kIsTransient)) {
344  if (gDebug>1)
345  Info("FillTClass()",
346  "Cannot find TClass for %s; Creating an empty one in the kForwardDeclared state.",
347  GetClassName(element.fClassIndex));
348  currentRDClass = new TClass(GetClassName(element.fClassIndex),1,TClass::kForwardDeclared, true /*silent*/);
349  }
350  }
351  //else {
352  if (!currentRDClass) continue;
353  //TProtoRealData* prd = (TProtoRealData*)element;
354  // pass a previous real data only if depth
355 
356  if (TRealData* rd = element.CreateRealData(currentRDClass, cl,prevRealData, prevLevel)) {
357  if (first) {
358  //LM: need to do here because somehow fRealData is destroyed when calling TClass::GetListOfDataMembers()
359  if (cl->fRealData) {
360  Info("FillTClass","Real data for class %s is not empty - make a new one",cl->GetName() );
361  delete cl->fRealData;
362  }
363  cl->fRealData = new TList(); // FIXME: this should really become a THashList!
364  first = false;
365  }
366 
367  cl->fRealData->AddLast(rd);
368  prevRealData = rd;
369  prevLevel = element.fLevel;
370 
371  }
372  //}
373  }
374  }
375  else {
376  if (cl->fRealData) {
377  Info("FillTClas","Real data for class %s is not empty - make a new one. Class has no Proto-realdata",cl->GetName() );
378  delete cl->fRealData;
379  }
380  cl->fRealData = new TList(); // FIXME: this should really become a THashList!
381  }
382 
383  cl->SetStreamerImpl();
384 
385  // set to zero in order not to delete when protoclass is deleted
386  fBase = 0;
387  //fData = 0;
388  fEnums = 0;
389 
390  fPRealData.clear();
391  fPRealData.shrink_to_fit(); // to reset the underlying allocate space
392 
393  // if (fPRealData) fPRealData->Delete();
394  // delete fPRealData;
395  // fPRealData = 0;
396 
397  return kTRUE;
398 }
399 
400 ////////////////////////////////////////////////////////////////////////////////
401 
403  //TNamed(rd->GetDataMember()->GetName(), rd->GetName()),
404  //TNamed(),
405  //fName(rd->GetDataMember()->GetName()),
406  //fTitle(rd->GetName()),
407  fOffset(rd->GetThisOffset()),
408  fDMIndex(-1),
409  fLevel(0),
410  fClassIndex(-1),
411  fStatusFlag(0)
412 {
413  TDataMember * dm = rd->GetDataMember();
414  TClass * cl = dm->GetClass();
415  assert(cl != NULL);
416  fDMIndex = DataMemberIndex(cl,dm->GetName());
417  //printf("Index of data member %s for class %s is %d \n",dm->GetName(), cl->GetName() , fDMIndex);
418  TString fullDataMemberName = rd->GetName(); // full data member name (e.g. fXaxis.fNbins)
419  fLevel = fullDataMemberName.CountChar('.');
420 
421  if (fullDataMemberName.Contains("*") ) SetFlag(kIsPointer);
422 
423  // Initialize this from a TRealData object.
424  SetFlag(kIsObject, rd->IsObject());
426 }
427 
428 ////////////////////////////////////////////////////////////////////////////////
429 /// Destructor to pin vtable.
430 ///if (gErrorIgnoreLevel==-2) printf("destroy real data %s - ",GetName());
431 
433 {
434 }
435 
436 ////////////////////////////////////////////////////////////////////////////////
437 /// Create a TRealData from this, with its data member coming from dmClass.
438 /// find data member from protoclass
439 
441  TClass* parent, TRealData *prevData, int prevLevel) const
442 {
443 
444  //TDataMember* dm = (TDataMember*)dmClass->GetListOfDataMembers()->FindObject(fName);
446 
447  if (!dm && dmClass->GetState()!=TClass::kForwardDeclared) {
448  ::Error("CreateRealData",
449  "Cannot find data member # %d of class %s for parent %s!", fDMIndex, dmClass->GetName(),
450  parent->GetName());
451  return nullptr;
452  }
453 
454  // here I need to re-construct the realdata full name (e.g. fAxis.fNbins)
455 
456  TString realMemberName;
457  // keep an empty name if data member is not found
458  if (dm) realMemberName = dm->GetName();
459  if (TestFlag(kIsPointer) )
460  realMemberName = TString("*")+realMemberName;
461  else {
462  if (dm && dm->GetArrayDim() > 0) {
463  // in case of array (like fMatrix[2][2] we need to add max index )
464  // this only in case of it os not a pointer
465  for (int idim = 0; idim < dm->GetArrayDim(); ++idim)
466  realMemberName += TString::Format("[%d]",dm->GetMaxIndex(idim) );
467  }
468  }
469 
470  if (prevData && fLevel > 0 ) {
471  if (fLevel-prevLevel == 1) // I am going down 1 level
472  realMemberName = TString::Format("%s.%s",prevData->GetName(), realMemberName.Data() );
473  else if (fLevel <= prevLevel) { // I am at the same level
474  // need to strip out prev name
475  std::string prevName = prevData->GetName();
476  // we strip the prev data member name from the full name
477  std::string parentName;
478  for (int i = 0; i < prevLevel-fLevel+1; ++i) {
479  parentName = prevName.substr(0, prevName.find_last_of(".") );
480  prevName = parentName;
481  }
482 
483  // now we need to add the current name
484  realMemberName = TString::Format("%s.%s",parentName.c_str(), realMemberName.Data() );
485  }
486  }
487 
488  //printf("adding new realdata for class %s : %s - %s %d %d \n",dmClass->GetName(), realMemberName.Data(), dm->GetName(),fLevel, fDMIndex );
489 
490  TRealData* rd = new TRealData(realMemberName, fOffset, dm);
491  if (TestFlag(kIsTransient)) {
492  rd->SetBit(TRealData::kTransient);
493  }
494  rd->SetIsObject(TestFlag(kIsObject) );
495  return rd;
496 }
497 
498 ////////////////////////////////////////////////////////////////////////////////
499 
501 {
502  TList * dmList = cl->GetListOfDataMembers();
503 
504  // we cannot use IndexOf because order is guaranteed only for non-static data member
505  Int_t index = 0;
506  for ( auto * obj : *dmList) {
507  TDataMember * dm = (TDataMember *) obj;
508  if (!dm ) continue;
509  if (dm->Property() & kIsStatic) continue;
510  if ( TString(dm->GetName()) == TString(name) )
511  return index;
512  index++;
513  }
514  ::Error("TProtoClass::DataMemberIndex","data member %s is not found in class %s",name, cl->GetName());
515  dmList->ls();
516  return -1;
517 }
518 ////////////////////////////////////////////////////////////////////////////////
519 
521 {
522  TList * dmList = cl->GetListOfDataMembers(false);
523 
524  // we cannot use IndexOf because order is guaranteed only for non-static data member
525  Int_t i = 0;
526  for ( auto * obj : *dmList) {
527  TDataMember * dm = (TDataMember *) obj;
528  if (!dm ) continue;
529  if (dm->Property() & kIsStatic) continue;
530  if (i == index)
531  return dm;
532  i++;
533  }
535  ::Error("TProtoClass::FindDataMember","data member with index %d is not found in class %s",index,cl->GetName());
536  return nullptr;
537 }
EState GetState() const
Definition: TClass.h:443
TString fTitle
Definition: TNamed.h:37
A collection of TDataMember objects designed for fast access given a DeclId_t and for keep track of T...
The TEnum class implements the enum type.
Definition: TEnum.h:42
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
Definition: TList.cxx:405
Long_t fProperty
Definition: TProtoClass.h:81
Bool_t fIsLoaded
Holder of TEnum for unloaded Enums.
Definition: TListOfEnums.h:48
R__EXTERN Int_t gErrorIgnoreLevel
Definition: TError.h:107
const char Option_t
Definition: RtypesCore.h:62
All ROOT classes may have RTTI (run time type identification) support added.
Definition: TDataMember.h:33
const char * Size
Definition: TXMLSetup.cxx:56
std::atomic< TListOfEnums * > fEnums
Definition: TClass.h:185
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition: TObject.cxx:899
UInt_t fCheckSum
Definition: TProtoClass.h:78
Int_t TestBits(UInt_t f) const
Definition: TObject.h:160
Long_t Property() const
Set TObject::fBits and fStreamerType to cache information about the class.
Definition: TClass.cxx:5671
TList * GetListOfDataMembers(Bool_t load=kTRUE)
Return list containing the TDataMembers of a class.
Definition: TClass.cxx:3559
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
#define gInterpreter
Definition: TInterpreter.h:515
Int_t fStreamerType
saved info to call Streamer
Definition: TClass.h:236
TList * fEnums
Definition: TProtoClass.h:73
Int_t fStreamerType
Definition: TProtoClass.h:80
Int_t GetMaxIndex(Int_t dim) const
Return maximum index for array dimension "dim".
virtual void AddLast(TObject *obj)
Add object at the end of the list.
Definition: TList.cxx:137
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:739
void Delete(Option_t *opt="")
Delete the containers that are usually owned by their TClass.
TList * GetListOfRealData() const
Definition: TClass.h:405
const char * Data() const
Definition: TString.h:349
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString...
Definition: TString.cxx:2335
Bool_t FillTClass(TClass *pcl)
Move data from this TProtoClass into cl.
std::atomic< TList * > fBase
Definition: TClass.h:182
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
std::vector< TDataMember * > fData
Definition: TProtoClass.h:75
virtual ~TProtoRealData()
Destructor to pin vtable.
Bool_t TestFlag(UInt_t f) const
Definition: TProtoClass.h:60
const char * GetClassName(Int_t index) const
Definition: TProtoClass.h:88
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:925
Bool_t IsObject() const
Definition: TRealData.h:60
Int_t fCanSplit
Definition: TProtoClass.h:79
TList * fRealData
Definition: TClass.h:181
A doubly linked list.
Definition: TList.h:47
void BuildRealData(void *pointer=0, Bool_t isTransient=kFALSE)
Build a full list of persistent data members.
Definition: TClass.cxx:1940
Int_t fCanSplit
Definition: TClass.h:225
virtual ~TProtoClass()
Destructor.
TClass * GetClass() const
Definition: TDataMember.h:73
Int_t fSizeof
Definition: TProtoClass.h:77
unsigned int UInt_t
Definition: RtypesCore.h:42
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:159
The TRealData class manages the effective list of all data members for a given class.
Definition: TRealData.h:34
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:81
void CalculateStreamerOffset() const
Calculate the offset between an object of this class to its base class TObject.
Definition: TClass.cxx:2092
TString fName
Definition: TNamed.h:36
Each class (see TClass) has a linked list of its base class(es).
Definition: TBaseClass.h:35
Int_t fSizeof
Definition: TClass.h:223
TRealData * CreateRealData(TClass *currentClass, TClass *parent, TRealData *parentData, int prevLevel) const
Create a TRealData from this, with its data member coming from dmClass.
Long_t fClassProperty
Definition: TProtoClass.h:82
virtual Int_t GetSize() const
Definition: TCollection.h:95
void SetFlag(UInt_t f, Bool_t on=kTRUE)
Definition: TProtoClass.h:61
Long_t fOffsetStreamer
Indicates whether GetClassVersion has been called.
Definition: TClass.h:235
void SetStreamerImpl()
Internal routine to set fStreamerImpl based on the value of fStreamerType.
Definition: TClass.cxx:5773
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
Definition: TClass.cxx:2882
std::atomic< Long_t > fProperty
Indicates whether this class can be split or not.
Definition: TClass.h:226
void Load()
Load all the DataMembers known to the interpreter for the scope &#39;fClass&#39; into this collection...
TVirtualCollectionProxy * GetCollectionProxy() const
Return the proxy describing the collection (if any).
Definition: TClass.cxx:2811
TList * fBase
Definition: TProtoClass.h:72
Long_t fClassProperty
Property.
Definition: TClass.h:227
Mother of all ROOT objects.
Definition: TObject.h:44
Int_t GetArrayDim() const
Return number of array dimensions.
std::atomic< UInt_t > fCheckSum
Definition: TClass.h:199
TListOfDataMembers * fData
Definition: TClass.h:183
A collection of TEnum objects designed for fast access given a DeclId_t and for keep track of TEnum t...
Definition: TListOfEnums.h:36
std::vector< TString > fDepClasses
Definition: TProtoClass.h:76
#define NULL
Definition: Rtypes.h:82
Long_t fOffsetStreamer
Definition: TProtoClass.h:83
R__EXTERN Int_t gDebug
Definition: Rtypes.h:128
ROOT::ESTLType GetCollectionType() const
Return the &#39;type&#39; of the STL the TClass is representing.
Definition: TClass.cxx:2800
Long_t Property() const
Get property description word. For meaning of bits see EProperty.
TDataMember * GetDataMember() const
Definition: TRealData.h:57
void ResetBit(UInt_t f)
Definition: TObject.h:158
Definition: first.py:1
static TDataMember * FindDataMember(TClass *cl, Int_t index)
const Bool_t kTRUE
Definition: Rtypes.h:91
virtual const char * GetName() const
Returns name of object.
Definition: TRealData.h:56
char name[80]
Definition: TGX11.cxx:109
static Int_t DataMemberIndex(TClass *cl, const char *name)
std::vector< TProtoRealData > fPRealData
Definition: TProtoClass.h:74