ROOT  6.06/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  // 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 
209  if (cl->GetCollectionType() != ROOT::kNotSTL) {
210  // We are in the case of collection, duplicate dictionary are allowed
211  // (and even somewhat excepted since they can be auto asked for).
212  // They do not always have a TProtoClass for them. In particular
213  // the one that are pre-generated in the ROOT build (in what was once
214  // called the cintdlls) do not have a pcms, neither does vector<string>
215  // which is part of libCore proper.
216  if (gDebug > 0)
217  Info("FillTClass", "Returning w/o doing anything. %s is a STL collection.",cl->GetName());
218  return kTRUE;
219  }
220  if (cl->Property() & kIsNamespace) {
221  if (gDebug > 0)
222  Info("FillTClass", "Returning w/o doing anything. %s is a namespace.",cl->GetName());
223  return kTRUE;
224  }
225  Error("FillTClass", "TClass %s already initialized!", cl->GetName());
226  return kFALSE;
227  }
228  if (gDebug > 1) Info("FillTClass","Loading TProtoClass for %s - %s",cl->GetName(),GetName());
229 
230  if (fPRealData.size() > 0) {
231 
232  // A first loop to retrieve the mother classes before starting to
233  // fill this TClass instance. This is done in order to avoid recursions
234  // for example in presence of daughter and mother class present in two
235  // dictionaries compiled in two different libraries which are not linked
236  // one with each other.
237  for (auto element: fPRealData) {
238  //if (element->IsA() == TObjString::Class()) {
239  if (element.IsAClass() ) {
240  if (gDebug > 1) Info("","Treating beforehand mother class %s",GetClassName(element.fClassIndex));
241 // int autoloadingOldval=gInterpreter->SetClassAutoloading(false);
243 
244  TClass::GetClass(GetClassName(element.fClassIndex));
245 
246 // gInterpreter->SetClassAutoloading(autoloadingOldval);
247  }
248  }
249  }
250 
251 
252  //this->Dump();
253 
254  // Copy only the TClass bits.
255  // not bit 13 and below and not bit 24 and above, just Bits 14 - 23
256  UInt_t newbits = TestBits(0x00ffc000);
257  cl->ResetBit(0x00ffc000);
258  cl->SetBit(newbits);
259 
260  cl->fName = this->fName;
261  cl->fTitle = this->fTitle;
262  cl->fBase = fBase;
263 
264  // fill list of data members in TClass
265  //if (cl->fData) { cl->fData->Delete(); delete cl->fData; }
266  cl->fData = new TListOfDataMembers(fData);
267  // for (auto * dataMember : fData) {
268  // //printf("add data member for class %s - member %s \n",GetName(), dataMember->GetName() );
269  // cl->fData->Add(dataMember);
270  // }
271  // // set loaded bit to true to avoid re-loading the data members
272  // cl->fData->SetIsLoaded();*
273 
274  //cl->fData = (TListOfDataMembers*)fData;
275 
276  // The TDataMember were passed along.
277  fData.clear();
278 
279  // We need to fill enums one by one to initialise the internal map which is
280  // transient
281  {
282  auto temp = new TListOfEnums();
283  if (fEnums) {
284  for (TObject* enumAsTObj : *fEnums){
285  temp->Add((TEnum*) enumAsTObj);
286  }
287  // We did not transfer the container itself, let remove it from memory without deleting its content.
288  fEnums->Clear();
289  delete fEnums;
290  fEnums = nullptr;
291  }
292  cl->fEnums = temp;
293  }
294 
295  cl->fSizeof = fSizeof;
296  cl->fCheckSum = fCheckSum;
297  cl->fCanSplit = fCanSplit;
298  cl->fProperty = fProperty;
301 
302  // Update pointers to TClass
303  if (cl->fBase) {
304  for (auto base: *cl->fBase) {
305  ((TBaseClass*)base)->SetClass(cl);
306  }
307  }
308  if (cl->fData) {
309  for (auto dm: *cl->fData) {
310  ((TDataMember*)dm)->SetClass(cl);
311  }
312  ((TListOfDataMembers*)cl->fData)->SetClass(cl);
313  }
314  if (cl->fEnums.load()) {
315  for (auto en: *cl->fEnums) {
316  ((TEnum*)en)->SetClass(cl);
317  }
318  ((TListOfEnums*)cl->fEnums)->SetClass(cl);
319  }
320 
321 
322  TClass* currentRDClass = cl;
323  TRealData * prevRealData = 0;
324  int prevLevel = 0;
325  bool first = true;
326  if (fPRealData.size() > 0) {
327  for (auto element: fPRealData) {
328  //if (element->IsA() == TObjString::Class()) {
329  if (element.IsAClass() ) {
330  // We now check for the TClass entry, w/o loading. Indeed we did that above.
331  // If the class is not found, it means that really it was not selected and we
332  // replace it with an empty placeholder with the status of kForwardDeclared.
333  // Interactivity will be of course possible but if IO is attempted, a warning
334  // will be issued.
336 
337  // Disable autoparsing which might be triggered by the use of ResolvedTypedef
338  // and the fallback new TClass() below.
339  currentRDClass = TClass::GetClass(GetClassName(element.fClassIndex), false /* Load */ );
340  //printf("element is a class - name %s - index %d %s \n ",currentRDClass->GetName(), element.fClassIndex, GetClassName(element.fClassIndex) );
341  if (!currentRDClass && !element.TestFlag(TProtoRealData::kIsTransient)) {
342  if (gDebug>1)
343  Info("FillTClass()",
344  "Cannot find TClass for %s; Creating an empty one in the kForwardDeclared state.",
345  GetClassName(element.fClassIndex));
346  currentRDClass = new TClass(GetClassName(element.fClassIndex),1,TClass::kForwardDeclared, true /*silent*/);
347  }
348  }
349  //else {
350  if (!currentRDClass) continue;
351  //TProtoRealData* prd = (TProtoRealData*)element;
352  // pass a previous real data only if depth
353 
354  if (TRealData* rd = element.CreateRealData(currentRDClass, cl,prevRealData, prevLevel)) {
355  if (first) {
356  //LM: need to do here because somehow fRealData is destroyed when calling TClass::GetListOfDataMembers()
357  if (cl->fRealData) {
358  Info("FillTClas","Real data for class %s is not empty - make a new one",cl->GetName() );
359  delete cl->fRealData;
360  }
361  cl->fRealData = new TList(); // FIXME: this should really become a THashList!
362  first = false;
363  }
364 
365  cl->fRealData->AddLast(rd);
366  prevRealData = rd;
367  prevLevel = element.fLevel;
368 
369  }
370  //}
371  }
372  }
373  else {
374  if (cl->fRealData) {
375  Info("FillTClas","Real data for class %s is not empty - make a new one. Class has no Proto-realdata",cl->GetName() );
376  delete cl->fRealData;
377  }
378  cl->fRealData = new TList(); // FIXME: this should really become a THashList!
379  }
380 
381  cl->SetStreamerImpl();
382 
383  // set to zero in order not to delete when protoclass is deleted
384  fBase = 0;
385  //fData = 0;
386  fEnums = 0;
387 
388  fPRealData.clear();
389  fPRealData.shrink_to_fit(); // to reset the underlying allocate space
390 
391  // if (fPRealData) fPRealData->Delete();
392  // delete fPRealData;
393  // fPRealData = 0;
394 
395 
396  return kTRUE;
397 }
398 
399 ////////////////////////////////////////////////////////////////////////////////
400 
402  //TNamed(rd->GetDataMember()->GetName(), rd->GetName()),
403  //TNamed(),
404  //fName(rd->GetDataMember()->GetName()),
405 // fTitle(rd->GetName()),
406  fOffset(rd->GetThisOffset()),
407  fDMIndex(-1),
408  fLevel(0),
409  fClassIndex(-1),
410  fStatusFlag(0)
411 {
412  TDataMember * dm = rd->GetDataMember();
413  TClass * cl = dm->GetClass();
414  assert(cl != NULL);
415  fDMIndex = DataMemberIndex(cl,dm->GetName());
416  //printf("Index of data member %s for class %s is %d \n",dm->GetName(), cl->GetName() , fDMIndex);
417  TString fullDataMemberName = rd->GetName(); // full data member name (e.g. fXaxis.fNbins)
418  fLevel = fullDataMemberName.CountChar('.');
419 
420  if (fullDataMemberName.Contains("*") ) SetFlag(kIsPointer);
421 
422  // Initialize this from a TRealData object.
423  SetFlag(kIsObject, rd->IsObject());
425 }
426 
427 ////////////////////////////////////////////////////////////////////////////////
428 /// Destructor to pin vtable.
429 ///if (gErrorIgnoreLevel==-2) printf("destroy real data %s - ",GetName());
430 
432 {
433 }
434 
435 ////////////////////////////////////////////////////////////////////////////////
436 /// Create a TRealData from this, with its data member coming from dmClass.
437 /// find data member from protoclass
438 
440  TClass* parent, TRealData *prevData, int prevLevel) const
441 {
442 
443  //TDataMember* dm = (TDataMember*)dmClass->GetListOfDataMembers()->FindObject(fName);
444  TDataMember* dm = TProtoClass::FindDataMember(dmClass, fDMIndex);
445 
446  if (!dm && dmClass->GetState()!=TClass::kForwardDeclared) {
447  ::Error("CreateRealData",
448  "Cannot find data member # %d of class %s for parent %s!", fDMIndex, dmClass->GetName(),
449  parent->GetName());
450  return nullptr;
451  }
452 
453  // here I need to re-construct the realdata full name (e.g. fAxis.fNbins)
454 
455  TString realMemberName;
456  // keep an empty name if data member is not found
457  if (dm) realMemberName = dm->GetName();
458  if (TestFlag(kIsPointer) )
459  realMemberName = TString("*")+realMemberName;
460  else {
461  if (dm && dm->GetArrayDim() > 0) {
462  // in case of array (like fMatrix[2][2] we need to add max index )
463  // this only in case of it os not a pointer
464  for (int idim = 0; idim < dm->GetArrayDim(); ++idim)
465  realMemberName += TString::Format("[%d]",dm->GetMaxIndex(idim) );
466  }
467  }
468 
469  if (prevData && fLevel > 0 ) {
470  if (fLevel-prevLevel == 1) // I am going down 1 level
471  realMemberName = TString::Format("%s.%s",prevData->GetName(), realMemberName.Data() );
472  else if (fLevel <= prevLevel) { // I am at the same level
473  // need to strip out prev name
474  std::string prevName = prevData->GetName();
475  // we strip the prev data member name from the full name
476  std::string parentName;
477  for (int i = 0; i < prevLevel-fLevel+1; ++i) {
478  parentName = prevName.substr(0, prevName.find_last_of(".") );
479  prevName = parentName;
480  }
481 
482  // now we need to add the current name
483  realMemberName = TString::Format("%s.%s",parentName.c_str(), realMemberName.Data() );
484  }
485  }
486 
487  //printf("adding new realdata for class %s : %s - %s %d %d \n",dmClass->GetName(), realMemberName.Data(), dm->GetName(),fLevel, fDMIndex );
488 
489  TRealData* rd = new TRealData(realMemberName, fOffset, dm);
490  rd->SetIsObject(TestFlag(kIsObject) );
491  return rd;
492 }
493 
494 ////////////////////////////////////////////////////////////////////////////////
495 
497 {
498  TList * dmList = cl->GetListOfDataMembers();
499 
500  // we cannot use IndexOf because order is guaranteed only for non-static data member
501  Int_t index = 0;
502  for ( auto * obj : *dmList) {
503  TDataMember * dm = (TDataMember *) obj;
504  if (!dm ) continue;
505  if (dm->Property() & kIsStatic) continue;
506  if ( TString(dm->GetName()) == TString(name) )
507  return index;
508  index++;
509  }
510  ::Error("TProtoClass::DataMemberIndex","data member %s is not found in class %s",name, cl->GetName());
511  dmList->ls();
512  return -1;
513 }
514 ////////////////////////////////////////////////////////////////////////////////
515 
517 {
518  TList * dmList = cl->GetListOfDataMembers(false);
519 
520  // we cannot use IndexOf because order is guaranteed only for non-static data member
521  Int_t i = 0;
522  for ( auto * obj : *dmList) {
523  TDataMember * dm = (TDataMember *) obj;
524  if (!dm ) continue;
525  if (dm->Property() & kIsStatic) continue;
526  if (i == index)
527  return dm;
528  i++;
529  }
531  ::Error("TProtoClass::FindDataMember","data member with index %d is not found in class %s",index,cl->GetName());
532  return nullptr;
533 }
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
void SetIsObject(Bool_t isObject)
Definition: TRealData.h:61
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
Definition: TList.cxx:404
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
#define assert(cond)
Definition: unittest.h:542
std::atomic< TListOfEnums * > fEnums
Definition: TClass.h:185
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition: TObject.cxx:892
UInt_t fCheckSum
Definition: TProtoClass.h:79
Int_t TestBits(UInt_t f) const
Definition: TObject.h:174
Long_t Property() const
Set TObject::fBits and fStreamerType to cache information about the class.
Definition: TClass.cxx:5652
TList * GetListOfDataMembers(Bool_t load=kTRUE)
Return list containing the TDataMembers of a class.
Definition: TClass.cxx:3539
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: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
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: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.
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: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.
const char * GetClassName(Int_t index) const
Definition: TProtoClass.h:89
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:918
Bool_t IsObject() const
Definition: TRealData.h:60
Int_t fCanSplit
Definition: TProtoClass.h:80
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:1937
Int_t fCanSplit
Definition: TClass.h:225
virtual ~TProtoClass()
Destructor.
TClass * GetClass() const
Definition: TDataMember.h:73
Int_t fSizeof
Definition: TProtoClass.h:78
unsigned int UInt_t
Definition: RtypesCore.h:42
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:173
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:2089
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:83
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
ClassImp(TMCParticle) void TMCParticle printf(": p=(%7.3f,%7.3f,%9.3f) ;", fPx, fPy, fPz)
void SetStreamerImpl()
Internal routine to set fStreamerImpl based on the value of fStreamerType.
Definition: TClass.cxx:5754
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:2881
std::atomic< Long_t > fProperty
Indicates whether this class can be split or not.
Definition: TClass.h:226
TVirtualCollectionProxy * GetCollectionProxy() const
Return the proxy describing the collection (if any).
Definition: TClass.cxx:2810
#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
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:77
#define NULL
Definition: Rtypes.h:82
Long_t fOffsetStreamer
Definition: TProtoClass.h:84
R__EXTERN Int_t gDebug
Definition: Rtypes.h:128
ROOT::ESTLType GetCollectionType() const
Return the 'type' of the STL the TClass is representing.
Definition: TClass.cxx:2799
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:172
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
TObject * obj
static Int_t DataMemberIndex(TClass *cl, const char *name)
std::vector< TProtoRealData > fPRealData
Definition: TProtoClass.h:75