Logo ROOT   6.12/07
Reference Guide
TStreamerInfo.h
Go to the documentation of this file.
1 // @(#)root/io:$Id$
2 // Author: Rene Brun 12/10/2000
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, 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 #ifndef ROOT_TStreamerInfo
13 #define ROOT_TStreamerInfo
14 
15 #include <atomic>
16 
17 #include "TVirtualStreamerInfo.h"
18 
19 #include "ThreadLocalStorage.h"
20 
22 
23 /**
24 \class TStreamerInfo
25 \ingroup IO
26 Describe Streamer information for one class version
27 */
28 
29 class TFile;
30 class TClass;
31 class TClonesArray;
32 class TDataMember;
33 class TMemberStreamer;
34 class TStreamerElement;
35 class TStreamerBasicType;
36 class TClassStreamer;
37 class TVirtualArray;
38 namespace ROOT { namespace Detail { class TCollectionProxyInfo; } }
39 namespace ROOT { class TSchemaRule; }
40 
41 namespace TStreamerInfoActions { class TActionSequence; }
42 
44 
45  class TCompInfo {
46  // Class used to cache information (see fComp)
47  private:
48  // TCompInfo(const TCompInfo&) = default;
49  // TCompInfo& operator=(const TCompInfo&) = default;
50  public:
55  TStreamerElement *fElem; ///< Not Owned
57  TClass *fClass; ///< Not Owned
58  TClass *fNewClass; ///< Not Owned
60  TMemberStreamer *fStreamer; ///< Not Owned
61  TCompInfo() : fType(-1), fNewType(0), fOffset(0), fLength(0), fElem(0), fMethod(0),
62  fClass(0), fNewClass(0), fClassName(), fStreamer(0) {};
63  ~TCompInfo() {};
64  void Update(const TClass *oldcl, TClass *newcl);
65  };
67 
68 public:
69  // make the opaque pointer public.
71 
72 protected:
73  //---------------------------------------------------------------------------
74  // Adapter class used to handle streaming collection of pointers
75  //---------------------------------------------------------------------------
77  {
78  public:
80  fProxy( proxy ) {}
81 
82  char* operator[]( UInt_t idx ) const
83  {
84  char **el = (char**)fProxy->At(idx);
85  return *el;
86  }
87  private:
89  };
90 
91 private:
92  UInt_t fCheckSum; ///<Checksum of original class
93  Int_t fClassVersion; ///<Class version identifier
94  Int_t fOnFileClassVersion;///<!Class version identifier as stored on file.
95  Int_t fNumber; ///<!Unique identifier
96  Int_t fSize; ///<!size of the persistent class
97  Int_t fNdata; ///<!number of optimized elements
98  Int_t fNfulldata; ///<!number of elements
99  Int_t fNslots; ///<!total numbrer of slots in fComp.
100  TCompInfo *fComp; ///<![fNslots with less than fElements->GetEntries()*1.5 used] Compiled info
101  TCompInfo **fCompOpt; ///<![fNdata]
102  TCompInfo **fCompFull; ///<![fElements->GetEntries()]
103  TClass *fClass; ///<!pointer to class
104  TObjArray *fElements; ///<Array of TStreamerElements
105  Version_t fOldVersion; ///<! Version of the TStreamerInfo object read from the file
106  Int_t fNVirtualInfoLoc; ///<! Number of virtual info location to update.
107  ULong_t *fVirtualInfoLoc; ///<![fNVirtualInfoLoc] Location of the pointer to the TStreamerInfo inside the object (when emulated)
108  std::atomic<ULong_t> fLiveCount; ///<! Number of outstanding pointer to this StreamerInfo.
109  TStreamerInfoActions::TActionSequence *fReadObjectWise; ///<! List of read action resulting from the compilation.
110  TStreamerInfoActions::TActionSequence *fReadMemberWise; ///<! List of read action resulting from the compilation for use in member wise streaming.
111  TStreamerInfoActions::TActionSequence *fReadMemberWiseVecPtr; ///<! List of read action resulting from the compilation for use in member wise streaming.
112  TStreamerInfoActions::TActionSequence *fWriteObjectWise; ///<! List of write action resulting from the compilation.
113  TStreamerInfoActions::TActionSequence *fWriteMemberWise; ///<! List of write action resulting from the compilation for use in member wise streaming.
114  TStreamerInfoActions::TActionSequence *fWriteMemberWiseVecPtr; ///<! List of write action resulting from the compilation for use in member wise streaming.
115  TStreamerInfoActions::TActionSequence *fWriteText; ///<! List of write action resulting for text output like JSON or XML.
116 
117  static std::atomic<Int_t> fgCount; ///<Number of TStreamerInfo instances
118 
119  template <typename T> static T GetTypedValueAux(Int_t type, void *ladd, int k, Int_t len);
120  static void PrintValueAux(char *ladd, Int_t atype, TStreamerElement * aElement, Int_t aleng, Int_t *count);
121 
122  UInt_t GenerateIncludes(FILE *fp, char *inclist, const TList *extrainfos);
123  void GenerateDeclaration(FILE *fp, FILE *sfp, const TList *subClasses, Bool_t top = kTRUE);
124  void InsertArtificialElements(std::vector<const ROOT::TSchemaRule*> &rules);
125  void DestructorImpl(void* p, Bool_t dtorOnly);
126 
127 private:
128  TStreamerInfo(const TStreamerInfo&); // TStreamerInfo are copiable. Not Implemented.
129  TStreamerInfo& operator=(const TStreamerInfo&); // TStreamerInfo are copiable. Not Implemented.
130  void AddReadAction(TStreamerInfoActions::TActionSequence *readSequence, Int_t index, TCompInfo *compinfo);
131  void AddWriteAction(TStreamerInfoActions::TActionSequence *writeSequence, Int_t index, TCompInfo *compinfo);
132  void AddWriteTextAction(TStreamerInfoActions::TActionSequence *writeSequence, Int_t index, TCompInfo *compinfo);
133  void AddReadMemberWiseVecPtrAction(TStreamerInfoActions::TActionSequence *readSequence, Int_t index, TCompInfo *compinfo);
134  void AddWriteMemberWiseVecPtrAction(TStreamerInfoActions::TActionSequence *writeSequence, Int_t index, TCompInfo *compinfo);
135 
136 public:
137 
138  /// Status bits
139  /// See TVirtualStreamerInfo::EStatusBits for the values.
140 
141  /// EReadWrite Enumerator
142  /// | Enum Constant | Description |
143  /// |-------------|--------------------|
144  /// | kBase | Base class element |
145  /// | kOffsetL | Fixed size array |
146  /// | kOffsetP | Pointer to object |
147  /// | kCounter | Counter for array size |
148  /// | kCharStar | Pointer to array of char |
149  /// | kLegacyChar | Equal to TDataType's kchar |
150  /// | kBits | TObject::fBits in case of a referenced object |
151  /// | kObject | Class derived from TObject, or for TStreamerSTL::fCtype non-pointer elements |
152  /// | kObjectp | Class* derived from TObject and with comment field //->Class, or for TStreamerSTL::fCtype: pointer elements |
153  /// | kObjectP | Class* derived from TObject and with NO comment field //->Class |
154  /// | kAny | Class not derived from TObject |
155  /// | kAnyp | Class* not derived from TObject with comment field //->Class |
156  /// | kAnyP | Class* not derived from TObject with NO comment field //->Class |
157  /// | kAnyPnoVT | Class* not derived from TObject with NO comment field //->Class and Class has NO virtual table |
158  /// | kSTLp | Pointer to STL container |
159  /// | kTString | TString, special case |
160  /// | kTObject | TObject, special case |
161  /// | kTNamed | TNamed , special case |
162  /// | kCache | Cache the value in memory than is not part of the object but is accessible via a SchemaRule |
163  enum EReadWrite {
164  kBase = 0, kOffsetL = 20, kOffsetP = 40, kCounter = 6, kCharStar = 7,
165  kChar = 1, kShort = 2, kInt = 3, kLong = 4, kFloat = 5,
166  kDouble = 8, kDouble32= 9,
167  kLegacyChar = 10, /// Equal to TDataType's kchar
168  kUChar = 11, kUShort = 12, kUInt = 13, kULong = 14, kBits = 15,
169  kLong64 = 16, kULong64 = 17, kBool = 18, kFloat16 = 19,
170  kObject = 61, kAny = 62, kObjectp = 63, kObjectP = 64, kTString = 65,
171  kTObject = 66, kTNamed = 67, kAnyp = 68, kAnyP = 69, kAnyPnoVT = 70,
172  kSTLp = 71,
173  kSkip = 100, kSkipL = 120, kSkipP = 140,
174  kConv = 200, kConvL = 220, kConvP = 240,
175  kSTL = 300, kSTLstring = 365,
176  kStreamer = 500, kStreamLoop = 501,
177  kCache = 600, /// Cache the value in memory than is not part of the object but is accessible via a SchemaRule
178  kArtificial = 1000,
179  kCacheNew = 1001,
180  kCacheDelete = 1002,
181  kNeedObjectForVirtualBaseClass = 99997,
182  kMissing = 99999
183  };
184 
185  TStreamerInfo();
186  TStreamerInfo(TClass *cl);
187  virtual ~TStreamerInfo();
188  void Build();
189  void BuildCheck(TFile *file = 0);
190  void BuildEmulated(TFile *file);
191  void BuildOld();
192  virtual Bool_t BuildFor( const TClass *cl );
193  void CallShowMembers(const void* obj, TMemberInspector &insp, Bool_t isTransient) const;
194  void Clear(Option_t *);
195  TObject *Clone(const char *newname = "") const;
196  Bool_t CompareContent(TClass *cl,TVirtualStreamerInfo *info, Bool_t warn, Bool_t complete, TFile *file);
197  void Compile();
198  void ComputeSize();
199  void ForceWriteInfo(TFile *file, Bool_t force=kFALSE);
200  Int_t GenerateHeaderFile(const char *dirname, const TList *subClasses = 0, const TList *extrainfos = 0);
201  TClass *GetActualClass(const void *obj) const;
202  TClass *GetClass() const {return fClass;}
203  UInt_t GetCheckSum() const {return fCheckSum;}
204  UInt_t GetCheckSum(TClass::ECheckSum code) const;
205  Int_t GetClassVersion() const {return fClassVersion;}
206  Int_t GetDataMemberOffset(TDataMember *dm, TMemberStreamer *&streamer) const;
207  TObjArray *GetElements() const {return fElements;}
208  TStreamerElement *GetElem(Int_t id) const {return fComp[id].fElem;} // Return the element for the list of optimized elements (max GetNdata())
209  TStreamerElement *GetElement(Int_t id) const {return (TStreamerElement*)fElements->At(id);} // Return the element for the complete list of elements (max GetElements()->GetEntries())
210  Int_t GetElementOffset(Int_t id) const {return fCompFull[id]->fOffset;}
211  TStreamerInfoActions::TActionSequence *GetReadMemberWiseActions(Bool_t forCollection) { return forCollection ? fReadMemberWiseVecPtr : fReadMemberWise; }
213  TStreamerInfoActions::TActionSequence *GetWriteMemberWiseActions(Bool_t forCollection) { return forCollection ? fWriteMemberWiseVecPtr : fWriteMemberWise; }
216  Int_t GetNdata() const {return fNdata;}
217  Int_t GetNelement() const { return fElements->GetEntries(); }
218  Int_t GetNumber() const {return fNumber;}
219  Int_t GetLength(Int_t id) const {return fComp[id].fLength;}
220  ULong_t GetMethod(Int_t id) const {return fComp[id].fMethod;}
221  Int_t GetNewType(Int_t id) const {return fComp[id].fNewType;}
222  Int_t GetOffset(const char *) const;
223  Int_t GetOffset(Int_t id) const {return fComp[id].fOffset;}
224  Version_t GetOldVersion() const {return fOldVersion;}
225  Int_t GetOnFileClassVersion() const {return fOnFileClassVersion;}
226  Int_t GetSize() const;
227  Int_t GetSizeElements() const;
228  TStreamerElement *GetStreamerElement(const char*datamember, Int_t& offset) const;
229  TStreamerElement *GetStreamerElementReal(Int_t i, Int_t j) const;
230  Int_t GetType(Int_t id) const {return fComp[id].fType;}
231  template <typename T> T GetTypedValue(char *pointer, Int_t i, Int_t j, Int_t len) const;
232  template <typename T> T GetTypedValueClones(TClonesArray *clones, Int_t i, Int_t j, Int_t k, Int_t eoffset) const;
233  template <typename T> T GetTypedValueSTL(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const;
234  template <typename T> T GetTypedValueSTLP(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const;
235  Double_t GetValue(char *pointer, Int_t i, Int_t j, Int_t len) const { return GetTypedValue<Double_t>(pointer, i, j, len); }
236  Double_t GetValueClones(TClonesArray *clones, Int_t i, Int_t j, Int_t k, Int_t eoffset) const { return GetTypedValueClones<Double_t>(clones, i, j, k, eoffset); }
237  Double_t GetValueSTL(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const { return GetTypedValueSTL<Double_t>(cont, i, j, k, eoffset); }
238  Double_t GetValueSTLP(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const { return GetTypedValueSTLP<Double_t>(cont, i, j, k, eoffset); }
239  void ls(Option_t *option="") const;
240  Bool_t MatchLegacyCheckSum(UInt_t checksum) const;
242  void *New(void *obj = 0);
243  void *NewArray(Long_t nElements, void* ary = 0);
244  void Destructor(void* p, Bool_t dtorOnly = kFALSE);
245  void DeleteArray(void* p, Bool_t dtorOnly = kFALSE);
246  void PrintValue(const char *name, char *pointer, Int_t i, Int_t len, Int_t lenmax=1000) const;
247  void PrintValueClones(const char *name, TClonesArray *clones, Int_t i, Int_t eoffset, Int_t lenmax=1000) const;
248  void PrintValueSTL(const char *name, TVirtualCollectionProxy *cont, Int_t i, Int_t eoffset, Int_t lenmax=1000) const;
249 
250  template <class T>
251  Int_t ReadBuffer(TBuffer &b, const T &arrptr, TCompInfo *const*const compinfo, Int_t first, Int_t last, Int_t narr=1,Int_t eoffset=0,Int_t mode=0);
252  template <class T>
253  Int_t ReadBufferSkip(TBuffer &b, const T &arrptr, const TCompInfo *compinfo,Int_t kase, TStreamerElement *aElement, Int_t narr, Int_t eoffset);
254  template <class T>
255  Int_t ReadBufferConv(TBuffer &b, const T &arrptr, const TCompInfo *compinfo,Int_t kase, TStreamerElement *aElement, Int_t narr, Int_t eoffset);
256  template <class T>
257  Int_t ReadBufferArtificial(TBuffer &b, const T &arrptr, TStreamerElement *aElement, Int_t narr, Int_t eoffset);
258 
259  Int_t ReadBufferClones(TBuffer &b, TClonesArray *clones, Int_t nc, Int_t first, Int_t eoffset);
260  Int_t ReadBufferSTL(TBuffer &b, TVirtualCollectionProxy *cont, Int_t nc, Int_t eoffset, Bool_t v7 = kTRUE );
261  void SetCheckSum(UInt_t checksum) {fCheckSum = checksum;}
262  void SetClass(TClass *cl) {fClass = cl;}
263  void SetClassVersion(Int_t vers) {fClassVersion=vers;}
264  void SetOnFileClassVersion(Int_t vers) {fOnFileClassVersion=vers;}
265  void TagFile(TFile *fFile);
266 private:
267  // Try to remove those functions from the public interface.
268  Int_t WriteBuffer(TBuffer &b, char *pointer, Int_t first);
269  Int_t WriteBufferClones(TBuffer &b, TClonesArray *clones, Int_t nc, Int_t first, Int_t eoffset);
270  Int_t WriteBufferSTL (TBuffer &b, TVirtualCollectionProxy *cont, Int_t nc);
271  Int_t WriteBufferSTLPtrs( TBuffer &b, TVirtualCollectionProxy *cont, Int_t nc, Int_t first, Int_t eoffset);
272 public:
273  virtual void Update(const TClass *oldClass, TClass *newClass);
274 
275  virtual TVirtualCollectionProxy *GenEmulatedProxy(const char* class_name, Bool_t silent);
276  virtual TClassStreamer *GenEmulatedClassStreamer(const char* class_name, Bool_t silent);
277  virtual TVirtualCollectionProxy *GenExplicitProxy( const ::ROOT::Detail::TCollectionProxyInfo &info, TClass *cl );
278  virtual TClassStreamer *GenExplicitClassStreamer( const ::ROOT::Detail::TCollectionProxyInfo &info, TClass *cl );
279 
280  static TStreamerElement *GetCurrentElement();
281 
282 public:
283  // For access by the StreamerInfoActions.
284  template <class T>
285  Int_t WriteBufferAux (TBuffer &b, const T &arr, TCompInfo *const*const compinfo, Int_t first, Int_t last, Int_t narr,Int_t eoffset,Int_t mode);
286 
287  //WARNING this class version must be the same as TVirtualStreamerInfo
288  ClassDef(TStreamerInfo,9) //Streamer information for one class version
289 };
290 
291 
292 #endif
Describe Streamer information for one class version.
Definition: TStreamerInfo.h:43
TStreamerInfoActions::TActionSequence * GetWriteObjectWiseActions()
Int_t fClassVersion
Class version identifier.
Definition: TStreamerInfo.h:93
static std::atomic< Int_t > fgCount
Number of TStreamerInfo instances.
An array of TObjects.
Definition: TObjArray.h:37
TClass * fNewClass
Not Owned.
Definition: TStreamerInfo.h:58
Version_t fOldVersion
! Version of the TStreamerInfo object read from the file
char * operator[](UInt_t idx) const
Definition: TStreamerInfo.h:82
void SetCheckSum(UInt_t checksum)
TStreamerInfoActions::TActionSequence * fWriteMemberWiseVecPtr
! List of write action resulting from the compilation for use in member wise streaming.
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
short Version_t
Definition: RtypesCore.h:61
TStreamerElement * GetElem(Int_t id) const
Version_t GetOldVersion() const
const char Option_t
Definition: RtypesCore.h:62
All ROOT classes may have RTTI (run time type identification) support added.
Definition: TDataMember.h:31
double T(double x)
Definition: ChebyshevPol.h:34
T ReadBuffer(TBufferFile *buf)
One of the template functions used to read objects from messages.
Definition: MPSendRecv.h:157
TStreamerElement * GetElement(Int_t id) const
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:46
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
Basic string class.
Definition: TString.h:125
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Int_t GetNelement() const
Double_t GetValueSTLP(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const
Int_t fNdata
!number of optimized elements
Definition: TStreamerInfo.h:97
ULong_t * fVirtualInfoLoc
![fNVirtualInfoLoc] Location of the pointer to the TStreamerInfo inside the object (when emulated) ...
Abstract base class for accessing the data-members of a class.
TObject * At(Int_t idx) const
Definition: TObjArray.h:165
TCompInfo ** fCompFull
![fElements->GetEntries()]
V GetOffset(E val1, E val2, V iso)
TStreamerInfoActions::TActionSequence * fReadMemberWise
! List of read action resulting from the compilation for use in member wise streaming.
Int_t fSize
!size of the persistent class
Definition: TStreamerInfo.h:96
TVirtualStreamerInfo * NewInfo(TClass *cl)
#define ClassDef(name, id)
Definition: Rtypes.h:320
ECheckSum
Definition: TClass.h:102
TMemberStreamer * fStreamer
Not Owned.
Definition: TStreamerInfo.h:60
Int_t fNfulldata
!number of elements
Definition: TStreamerInfo.h:98
TStreamerInfoActions::TActionSequence * fReadObjectWise
! List of read action resulting from the compilation.
void SetOnFileClassVersion(Int_t vers)
void SetClass(TClass *cl)
XFontStruct * id
Definition: TGX11.cxx:108
UInt_t fCheckSum
Checksum of original class.
Definition: TStreamerInfo.h:92
TCompInfo TCompInfo_t
Definition: TStreamerInfo.h:70
A doubly linked list.
Definition: TList.h:44
Int_t GetType(Int_t id) const
TCppType_t GetActualClass(TCppType_t klass, TCppObject_t obj)
Definition: Cppyy.cxx:207
TClass * fClass
!pointer to class
TObjArray * fElements
Array of TStreamerElements.
TVirtualCollectionProxy * fProxy
Definition: TStreamerInfo.h:88
TStreamerInfoActions::TActionSequence * fWriteText
! List of write action resulting for text output like JSON or XML.
TClass * GetClass() const
Wrapper around an object and giving indirect access to its content even if the object is not of a cla...
Definition: TVirtualArray.h:26
UInt_t GetCheckSum() const
TPointerCollectionAdapter(TVirtualCollectionProxy *proxy)
Definition: TStreamerInfo.h:79
Double_t GetValueClones(TClonesArray *clones, Int_t i, Int_t j, Int_t k, Int_t eoffset) const
Int_t fOnFileClassVersion
!Class version identifier as stored on file.
Definition: TStreamerInfo.h:94
ULong_t GetMethod(Int_t id) const
unsigned int UInt_t
Definition: RtypesCore.h:42
Double_t GetValueSTL(TVirtualCollectionProxy *cont, Int_t i, Int_t j, Int_t k, Int_t eoffset) const
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:75
TStreamerInfoActions::TActionSequence * GetReadMemberWiseActions(Bool_t forCollection)
Int_t GetNdata() const
TClass * fClass
Not Owned.
Definition: TStreamerInfo.h:57
void SetClassVersion(Int_t vers)
Int_t GetElementOffset(Int_t id) const
TCompInfo * fComp
![fNslots with less than fElements->GetEntries()*1.5 used] Compiled info
TStreamerInfoActions::TActionSequence * fWriteMemberWise
! List of write action resulting from the compilation for use in member wise streaming.
const Bool_t kFALSE
Definition: RtypesCore.h:88
TStreamerElement * fElem
Not Owned.
Definition: TStreamerInfo.h:55
long Long_t
Definition: RtypesCore.h:50
double Double_t
Definition: RtypesCore.h:55
Int_t fNslots
!total numbrer of slots in fComp.
Definition: TStreamerInfo.h:99
TStreamerInfoActions::TActionSequence * fReadMemberWiseVecPtr
! List of read action resulting from the compilation for use in member wise streaming.
TStreamerInfoActions::TActionSequence * fWriteObjectWise
! List of write action resulting from the compilation.
int type
Definition: TGX11.cxx:120
unsigned long ULong_t
Definition: RtypesCore.h:51
Int_t fNVirtualInfoLoc
! Number of virtual info location to update.
TStreamerInfoActions::TActionSequence * GetWriteTextActions()
Binding & operator=(OUT(*fun)(void))
Mother of all ROOT objects.
Definition: TObject.h:37
TObjArray * GetElements() const
Int_t GetClassVersion() const
Int_t GetOnFileClassVersion() const
An array of clone (identical) objects.
Definition: TClonesArray.h:32
Int_t fNumber
!Unique identifier
Definition: TStreamerInfo.h:95
Int_t GetOffset(Int_t id) const
Int_t GetNewType(Int_t id) const
Definition: file.py:1
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
Int_t GetEntries() const
Return the number of objects in array (i.e.
Definition: TObjArray.cxx:522
TCompInfo ** fCompOpt
![fNdata]
Definition: first.py:1
Int_t GetLength(Int_t id) const
TStreamerInfoActions::TActionSequence * GetReadObjectWiseActions()
Abstract Interface class describing Streamer information for one class.
Int_t GetNumber() const
const Bool_t kTRUE
Definition: RtypesCore.h:87
Double_t GetValue(char *pointer, Int_t i, Int_t j, Int_t len) const
char name[80]
Definition: TGX11.cxx:109
std::atomic< ULong_t > fLiveCount
! Number of outstanding pointer to this StreamerInfo.
TStreamerInfoActions::TActionSequence * GetWriteMemberWiseActions(Bool_t forCollection)