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