Logo ROOT   6.16/01
Reference Guide
TBranch.h
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Rene Brun 12/01/96
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_TBranch
13#define ROOT_TBranch
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TBranch //
19// //
20// A TTree object is a list of TBranchs. //
21// A TBranch describes the branch data structure and supports : //
22// the list of TBaskets (branch buffers) associated to this branch. //
23// the list of TLeaves (branch description) //
24//////////////////////////////////////////////////////////////////////////
25
26#include <memory>
27
28#include "Compression.h"
29
30#include "TNamed.h"
31
32#include "TObjArray.h"
33
34#include "TAttFill.h"
35
36#include "TDataType.h"
37
38#include "ROOT/TIOFeatures.hxx"
39
40#include "TBranchCacheInfo.h"
41
42class TTree;
43class TBasket;
44class TLeaf;
45class TBrowser;
46class TDirectory;
47class TFile;
48class TClonesArray;
49class TTreeCloner;
50class TTreeCache;
51
52 const Int_t kDoNotProcess = BIT(10); // Active bit for branches
53 const Int_t kIsClone = BIT(11); // to indicate a TBranchClones
54 const Int_t kBranchObject = BIT(12); // branch is a TObject*
55 const Int_t kBranchAny = BIT(17); // branch is an object*
57
58namespace ROOT {
59 namespace Internal {
60 class TBranchIMTHelper; ///< A helper class for managing IMT work during TTree:Fill operations.
61 }
62}
63
64class TBranch : public TNamed , public TAttFill {
66
67protected:
68 friend class TTreeCache;
69 friend class TTreeCloner;
70 friend class TTree;
71
72 // TBranch status bits
74 kDoNotProcess = ::kDoNotProcess, // Active bit for branches
75 kIsClone = ::kIsClone, // to indicate a TBranchClones
76 kBranchObject = ::kBranchObject, // branch is a TObject*
77 kBranchAny = ::kBranchAny, // branch is an object*
78 // kMapObject = kBranchObject | kBranchAny;
80
81 kDoNotUseBufferMap = BIT(22) // If set, at least one of the entry in the branch will use the buffer's map of classname and objects.
82 };
83
84 static Int_t fgCount; ///<! branch counter
85 Int_t fCompress; ///< Compression level and algorithm
86 Int_t fBasketSize; ///< Initial Size of Basket Buffer
87 Int_t fEntryOffsetLen; ///< Initial Length of fEntryOffset table in the basket buffers
88 Int_t fWriteBasket; ///< Last basket number written
89 Long64_t fEntryNumber; ///< Current entry number (last one filled in this branch)
90 TIOFeatures fIOFeatures; ///< IO features for newly-created baskets.
91 Int_t fOffset; ///< Offset of this branch
92 Int_t fMaxBaskets; ///< Maximum number of Baskets so far
93 Int_t fNBaskets; ///<! Number of baskets in memory
94 Int_t fSplitLevel; ///< Branch split level
95 Int_t fNleaves; ///<! Number of leaves
96 Int_t fReadBasket; ///<! Current basket number when reading
97 Long64_t fReadEntry; ///<! Current entry number when reading
98 Long64_t fFirstBasketEntry; ///<! First entry in the current basket.
99 Long64_t fNextBasketEntry; ///<! Next entry that will requires us to go to the next basket
100 TBasket *fCurrentBasket; ///<! Pointer to the current basket.
101 Long64_t fEntries; ///< Number of entries
102 Long64_t fFirstEntry; ///< Number of the first entry in this branch
103 Long64_t fTotBytes; ///< Total number of bytes in all leaves before compression
104 Long64_t fZipBytes; ///< Total number of bytes in all leaves after compression
105 TObjArray fBranches; ///< -> List of Branches of this branch
106 TObjArray fLeaves; ///< -> List of leaves of this branch
107 TObjArray fBaskets; ///< -> List of baskets of this branch
108 Int_t *fBasketBytes; ///<[fMaxBaskets] Length of baskets on file
109 Long64_t *fBasketEntry; ///<[fMaxBaskets] Table of first entry in each basket
110 Long64_t *fBasketSeek; ///<[fMaxBaskets] Addresses of baskets on file
111 TTree *fTree; ///<! Pointer to Tree header
112 TBranch *fMother; ///<! Pointer to top-level parent branch in the tree.
113 TBranch *fParent; ///<! Pointer to parent branch.
114 char *fAddress; ///<! Address of 1st leaf (variable or object)
115 TDirectory *fDirectory; ///<! Pointer to directory where this branch buffers are stored
116 TString fFileName; ///< Name of file where buffers are stored ("" if in same file as Tree header)
117 TBuffer *fEntryBuffer; ///<! Buffer used to directly pass the content without streaming
118 TBuffer *fTransientBuffer; ///<! Pointer to the current transient buffer.
119 TList *fBrowsables; ///<! List of TVirtualBranchBrowsables used for Browse()
120
121 Bool_t fSkipZip; ///<! After being read, the buffer will not be unzipped.
122
124 CacheInfo_t fCacheInfo; ///<! Hold info about which basket are in the cache and if they have been retrieved from the cache.
125
127 ReadLeaves_t fReadLeaves; ///<! Pointer to the ReadLeaves implementation to use.
129 FillLeaves_t fFillLeaves; ///<! Pointer to the FillLeaves implementation to use.
130 void ReadLeavesImpl(TBuffer &b);
134 void FillLeavesImpl(TBuffer &b);
135
136 void SetSkipZip(Bool_t skip = kTRUE) { fSkipZip = skip; }
137 void Init(const char *name, const char *leaflist, Int_t compress);
138
141 Int_t WriteBasket(TBasket* basket, Int_t where) { return WriteBasketImpl(basket, where, nullptr); }
142
143 TString GetRealFileName() const;
144
145private:
146 Int_t FillEntryBuffer(TBasket* basket,TBuffer* buf, Int_t& lnew);
148 TBranch(const TBranch&) = delete; // not implemented
149 TBranch& operator=(const TBranch&) = delete; // not implemented
150
151public:
152 TBranch();
153 TBranch(TTree *tree, const char *name, void *address, const char *leaflist, Int_t basketsize=32000, Int_t compress = ROOT::RCompressionSetting::EAlgorithm::kInherit);
154 TBranch(TBranch *parent, const char *name, void *address, const char *leaflist, Int_t basketsize=32000, Int_t compress = ROOT::RCompressionSetting::EAlgorithm::kInherit);
155 virtual ~TBranch();
156
157 virtual void AddBasket(TBasket &b, Bool_t ondisk, Long64_t startEntry);
158 virtual void AddLastBasket(Long64_t startEntry);
159 Int_t BackFill();
160 virtual void Browse(TBrowser *b);
161 virtual void DeleteBaskets(Option_t* option="");
162 virtual void DropBaskets(Option_t *option = "");
163 void ExpandBasketArrays();
164 Int_t Fill() { return FillImpl(nullptr); }
166 virtual TBranch *FindBranch(const char *name);
167 virtual TLeaf *FindLeaf(const char *name);
170
171 virtual char *GetAddress() const {return fAddress;}
172 TBasket *GetBasket(Int_t basket);
175 virtual Long64_t GetBasketSeek(Int_t basket) const;
176 virtual Int_t GetBasketSize() const {return fBasketSize;}
177 virtual TList *GetBrowsables();
178 virtual const char* GetClassName() const;
183 virtual Int_t GetEntry(Long64_t entry=0, Int_t getall = 0);
184 virtual Int_t GetEntryExport(Long64_t entry, Int_t getall, TClonesArray *list, Int_t n);
186 Int_t GetEvent(Long64_t entry=0) {return GetEntry(entry);}
187 const char *GetIconName() const;
188 virtual Int_t GetExpectedType(TClass *&clptr,EDataType &type);
189 virtual TLeaf *GetLeaf(const char *name) const;
190 virtual TFile *GetFile(Int_t mode=0);
191 const char *GetFileName() const {return fFileName.Data();}
192 Int_t GetOffset() const {return fOffset;}
196 Long64_t GetTotalSize(Option_t *option="") const;
197 Long64_t GetTotBytes(Option_t *option="") const;
198 Long64_t GetZipBytes(Option_t *option="") const;
206 Int_t GetNleaves() const {return fNleaves;}
208 Long64_t GetEntries() const {return fEntries;}
209 TTree *GetTree() const {return fTree;}
210 virtual Int_t GetRow(Int_t row);
211 virtual Bool_t GetMakeClass() const;
212 TBranch *GetMother() const;
213 TBranch *GetSubBranch(const TBranch *br) const;
215 Bool_t IsAutoDelete() const;
216 Bool_t IsFolder() const;
217 virtual void KeepCircular(Long64_t maxEntries);
218 virtual Int_t LoadBaskets();
219 virtual void Print(Option_t *option="") const;
220 void PrintCacheInfo() const;
221 virtual void ReadBasket(TBuffer &b);
222 virtual void Refresh(TBranch *b);
223 virtual void Reset(Option_t *option="");
224 virtual void ResetAfterMerge(TFileMergeInfo *);
225 virtual void ResetAddress();
226 virtual void ResetReadEntry() {fReadEntry = -1;}
227 virtual void SetAddress(void *add);
228 virtual void SetObject(void *objadd);
229 virtual void SetAutoDelete(Bool_t autodel=kTRUE);
230 virtual void SetBasketSize(Int_t buffsize);
231 virtual void SetBufferAddress(TBuffer *entryBuffer);
235 virtual void SetEntries(Long64_t entries);
236 virtual void SetEntryOffsetLen(Int_t len, Bool_t updateSubBranches = kFALSE);
237 virtual void SetFirstEntry( Long64_t entry );
238 virtual void SetFile(TFile *file=0);
239 virtual void SetFile(const char *filename);
240 void SetIOFeatures(TIOFeatures &features) {fIOFeatures = features;}
241 virtual Bool_t SetMakeClass(Bool_t decomposeObj = kTRUE);
242 virtual void SetOffset(Int_t offset=0) {fOffset=offset;}
243 virtual void SetStatus(Bool_t status=1);
244 virtual void SetTree(TTree *tree) { fTree = tree;}
245 virtual void SetupAddresses();
246 virtual void UpdateAddress() {;}
247 virtual void UpdateFile();
248
249 static void ResetCount();
250
251 ClassDef(TBranch, 13); // Branch descriptor
252};
253
254//______________________________________________________________________________
256{
257 return (fCompress < 0) ? -1 : fCompress / 100;
258}
259
260//______________________________________________________________________________
262{
263 return (fCompress < 0) ? -1 : fCompress % 100;
264}
265
266//______________________________________________________________________________
268{
269 return (fCompress < 0) ? -1 : fCompress;
270}
271
272#endif
#define b(i)
Definition: RSha256.hxx:100
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
long long Long64_t
Definition: RtypesCore.h:69
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:324
#define BIT(n)
Definition: Rtypes.h:82
const Int_t kBranchAny
Definition: TBranch.h:55
const Int_t kMapObject
Definition: TBranch.h:56
const Int_t kBranchObject
Definition: TBranch.h:54
const Int_t kDoNotProcess
Definition: TBranch.h:52
const Int_t kIsClone
Definition: TBranch.h:53
EDataType
Definition: TDataType.h:28
int type
Definition: TGX11.cxx:120
typedef void((*Func_t)())
TIOFeatures provides the end-user with the ability to change the IO behavior of data written via a TT...
Definition: TIOFeatures.hxx:62
Fill Area Attributes class.
Definition: TAttFill.h:19
Manages buffers for branches of a Tree.
Definition: TBasket.h:34
A TTree is a list of TBranches.
Definition: TBranch.h:64
virtual TLeaf * GetLeaf(const char *name) const
Return pointer to the 1st Leaf named name in thisBranch.
Definition: TBranch.cxx:1652
void SetSkipZip(Bool_t skip=kTRUE)
Definition: TBranch.h:136
virtual void SetupAddresses()
If the branch address is not set, we set all addresses starting with the top level parent branch.
Definition: TBranch.cxx:2873
virtual void ResetAddress()
Reset the address of the branch.
Definition: TBranch.cxx:2234
virtual void SetAutoDelete(Bool_t autodel=kTRUE)
Set the automatic delete bit.
Definition: TBranch.cxx:2299
TString fFileName
Name of file where buffers are stored ("" if in same file as Tree header)
Definition: TBranch.h:116
virtual const char * GetClassName() const
Return the name of the user class whose content is stored in this branch, if any.
Definition: TBranch.cxx:1282
const char * GetIconName() const
Return icon name depending on type of branch.
Definition: TBranch.cxx:1290
Int_t fEntryOffsetLen
Initial Length of fEntryOffset table in the basket buffers.
Definition: TBranch.h:87
virtual void DeleteBaskets(Option_t *option="")
Loop on all branch baskets.
Definition: TBranch.cxx:688
virtual Long64_t GetBasketSeek(Int_t basket) const
Return address of basket in the file.
Definition: TBranch.cxx:1260
TBranch()
Default constructor. Used for I/O by default.
Definition: TBranch.cxx:81
virtual char * GetAddress() const
Definition: TBranch.h:171
Int_t BackFill()
Loop on all leaves of this branch to back fill Basket buffer.
Definition: TBranch.cxx:642
Int_t GetCompressionSettings() const
Definition: TBranch.h:267
Int_t GetCompressionLevel() const
Definition: TBranch.h:261
Int_t GetCompressionAlgorithm() const
Definition: TBranch.h:255
Int_t fMaxBaskets
Maximum number of Baskets so far.
Definition: TBranch.h:92
Long64_t fTotBytes
Total number of bytes in all leaves before compression.
Definition: TBranch.h:103
TBuffer * fTransientBuffer
! Pointer to the current transient buffer.
Definition: TBranch.h:118
virtual void ReadBasket(TBuffer &b)
Loop on all leaves of this branch to read Basket buffer.
Definition: TBranch.cxx:2036
TTree * GetTree() const
Definition: TBranch.h:209
FillLeaves_t fFillLeaves
! Pointer to the FillLeaves implementation to use.
Definition: TBranch.h:129
Int_t GetWriteBasket() const
Definition: TBranch.h:195
void(TBranch::* ReadLeaves_t)(TBuffer &b)
Definition: TBranch.h:126
@ kAutoDelete
Definition: TBranch.h:79
@ kDoNotUseBufferMap
Definition: TBranch.h:81
@ kBranchAny
Definition: TBranch.h:77
@ kIsClone
Definition: TBranch.h:75
@ kBranchObject
Definition: TBranch.h:76
@ kDoNotProcess
Definition: TBranch.h:74
TObjArray fLeaves
-> List of leaves of this branch
Definition: TBranch.h:106
char * fAddress
! Address of 1st leaf (variable or object)
Definition: TBranch.h:114
virtual void DropBaskets(Option_t *option="")
Loop on all branch baskets.
Definition: TBranch.cxx:719
TObjArray * GetListOfBranches()
Definition: TBranch.h:203
virtual TList * GetBrowsables()
Returns (and, if 0, creates) browsable objects for this branch See TVirtualBranchBrowsable::FillListO...
Definition: TBranch.cxx:1270
TList * fBrowsables
! List of TVirtualBranchBrowsables used for Browse()
Definition: TBranch.h:119
void ReadLeavesImpl(TBuffer &b)
Loop on all leaves of this branch to read Basket buffer.
Definition: TBranch.cxx:2044
virtual void SetTree(TTree *tree)
Definition: TBranch.h:244
Int_t fOffset
Offset of this branch.
Definition: TBranch.h:91
Long64_t * fBasketEntry
[fMaxBaskets] Table of first entry in each basket
Definition: TBranch.h:109
virtual void SetEntryOffsetLen(Int_t len, Bool_t updateSubBranches=kFALSE)
Update the default value for the branch's fEntryOffsetLen if and only if it was already non zero (and...
Definition: TBranch.cxx:2404
void ExpandBasketArrays()
Increase BasketEntry buffer of a minimum of 10 locations and a maximum of 50 per cent of current size...
Definition: TBranch.cxx:787
Int_t GetSplitLevel() const
Definition: TBranch.h:207
ROOT::TIOFeatures TIOFeatures
Definition: TBranch.h:65
void Init(const char *name, const char *leaflist, Int_t compress)
Definition: TBranch.cxx:281
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all leaves of entry and return total number of bytes read.
Definition: TBranch.cxx:1317
const char * GetFileName() const
Definition: TBranch.h:191
TIOFeatures GetIOFeatures() const
Returns the IO settings currently in use for this branch.
Definition: TBranch.cxx:1838
void FillLeavesImpl(TBuffer &b)
Loop on all leaves of this branch to fill Basket buffer.
Definition: TBranch.cxx:2079
Long64_t fReadEntry
! Current entry number when reading
Definition: TBranch.h:97
virtual void AddBasket(TBasket &b, Bool_t ondisk, Long64_t startEntry)
Add the basket to this branch.
Definition: TBranch.cxx:518
static void ResetCount()
Static function resetting fgCount.
Definition: TBranch.cxx:2257
TBranch * GetSubBranch(const TBranch *br) const
Find the parent branch of child.
Definition: TBranch.cxx:1746
ReadLeaves_t fReadLeaves
! Pointer to the ReadLeaves implementation to use.
Definition: TBranch.h:127
virtual void SetObject(void *objadd)
Set object this branch is pointing to.
Definition: TBranch.cxx:2519
Int_t FlushBaskets()
Flush to disk all the baskets of this branch and any of subbranches.
Definition: TBranch.cxx:1097
void ReadLeaves2Impl(TBuffer &b)
Read two leaves without the overhead of a loop.
Definition: TBranch.cxx:2070
TBasket * GetFreshCluster()
Drops the cluster two behind the current cluster and returns a fresh basket by either reusing or crea...
Definition: TBranch.cxx:1587
virtual void SetAddress(void *add)
Set address of this branch.
Definition: TBranch.cxx:2265
static Int_t fgCount
! branch counter
Definition: TBranch.h:84
void(TBranch::* FillLeaves_t)(TBuffer &b)
Definition: TBranch.h:128
Int_t GetEvent(Long64_t entry=0)
Definition: TBranch.h:186
virtual void AddLastBasket(Long64_t startEntry)
Add the start entry of the write basket (not yet created)
Definition: TBranch.cxx:584
TBasket * GetBasket(Int_t basket)
Return pointer to basket basketnumber in this Branch.
Definition: TBranch.cxx:1184
Int_t fNBaskets
! Number of baskets in memory
Definition: TBranch.h:93
void ReadLeaves1Impl(TBuffer &b)
Read one leaf without the overhead of a loop.
Definition: TBranch.cxx:2062
Int_t GetNleaves() const
Definition: TBranch.h:206
Bool_t IsFolder() const
Return kTRUE if more than one leaf or browsables, kFALSE otherwise.
Definition: TBranch.cxx:1854
virtual Int_t GetEntryExport(Long64_t entry, Int_t getall, TClonesArray *list, Int_t n)
Read all leaves of an entry and export buffers to real objects in a TClonesArray list.
Definition: TBranch.cxx:1417
Long64_t fZipBytes
Total number of bytes in all leaves after compression.
Definition: TBranch.h:104
TIOFeatures fIOFeatures
IO features for newly-created baskets.
Definition: TBranch.h:90
void SetCompressionAlgorithm(Int_t algorithm=ROOT::RCompressionSetting::EAlgorithm::kUseGlobal)
Set compression algorithm.
Definition: TBranch.cxx:2346
virtual void UpdateAddress()
Definition: TBranch.h:246
Bool_t IsAutoDelete() const
Return kTRUE if an existing object in a TBranchObject must be deleted.
Definition: TBranch.cxx:1846
Int_t GetOffset() const
Definition: TBranch.h:192
virtual TLeaf * FindLeaf(const char *name)
Find the leaf corresponding to the name 'searchname'.
Definition: TBranch.cxx:1042
Long64_t GetReadEntry() const
Definition: TBranch.h:194
CacheInfo_t fCacheInfo
! Hold info about which basket are in the cache and if they have been retrieved from the cache.
Definition: TBranch.h:124
TObjArray * GetListOfBaskets()
Definition: TBranch.h:202
virtual void SetBufferAddress(TBuffer *entryBuffer)
Set address of this branch directly from a TBuffer to avoid streaming.
Definition: TBranch.cxx:2328
Long64_t GetEntries() const
Definition: TBranch.h:208
Int_t fNleaves
! Number of leaves
Definition: TBranch.h:95
Int_t fSplitLevel
Branch split level.
Definition: TBranch.h:94
Int_t WriteBasketImpl(TBasket *basket, Int_t where, ROOT::Internal::TBranchIMTHelper *)
Write the current basket to disk and return the number of bytes written to the file.
Definition: TBranch.cxx:2782
TBasket * GetFreshBasket()
Return a fresh basket by either resusing an existing basket that needs to be drop (according to TTree...
Definition: TBranch.cxx:1543
virtual void UpdateFile()
Refresh the value of fDirectory (i.e.
Definition: TBranch.cxx:2883
void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseGeneralPurpose)
Set compression settings.
Definition: TBranch.cxx:2388
Int_t GetReadBasket() const
Definition: TBranch.h:193
Int_t * fBasketBytes
[fMaxBaskets] Length of baskets on file
Definition: TBranch.h:108
virtual void Print(Option_t *option="") const
Print TBranch parameters.
Definition: TBranch.cxx:1924
Long64_t fNextBasketEntry
! Next entry that will requires us to go to the next basket
Definition: TBranch.h:99
Int_t GetMaxBaskets() const
Definition: TBranch.h:205
Int_t * GetBasketBytes() const
Definition: TBranch.h:173
TBranch & operator=(const TBranch &)=delete
virtual ~TBranch()
Destructor.
Definition: TBranch.cxx:425
Int_t FillEntryBuffer(TBasket *basket, TBuffer *buf, Int_t &lnew)
Copy the data from fEntryBuffer into the current basket.
Definition: TBranch.cxx:897
virtual TFile * GetFile(Int_t mode=0)
Return pointer to the file where branch buffers reside, returns 0 in case branch buffers reside in th...
Definition: TBranch.cxx:1508
virtual void Browse(TBrowser *b)
Browser interface.
Definition: TBranch.cxx:661
TObjArray fBranches
-> List of Branches of this branch
Definition: TBranch.h:105
virtual void KeepCircular(Long64_t maxEntries)
keep a maximum of fMaxEntries in memory
Definition: TBranch.cxx:1866
virtual void ResetAfterMerge(TFileMergeInfo *)
Reset a Branch.
Definition: TBranch.cxx:2181
void ReadLeaves0Impl(TBuffer &b)
Read zero leaves without the overhead of a loop.
Definition: TBranch.cxx:2055
virtual Bool_t GetMakeClass() const
Return whether this branch is in a mode where the object are decomposed or not (Also known as MakeCla...
Definition: TBranch.cxx:1715
virtual void ResetReadEntry()
Definition: TBranch.h:226
TString GetRealFileName() const
Get real file name.
Definition: TBranch.cxx:1665
virtual TBranch * FindBranch(const char *name)
Find the immediate sub-branch with passed name.
Definition: TBranch.cxx:996
TBranch(const TBranch &)=delete
TDirectory * fDirectory
! Pointer to directory where this branch buffers are stored
Definition: TBranch.h:115
void PrintCacheInfo() const
Print the information we have about which basket is currently cached and whether they have been 'used...
Definition: TBranch.cxx:2028
TObjArray fBaskets
-> List of baskets of this branch
Definition: TBranch.h:107
virtual Int_t LoadBaskets()
Baskets associated to this branch are forced to be in memory.
Definition: TBranch.cxx:1892
void SetIOFeatures(TIOFeatures &features)
Definition: TBranch.h:240
Bool_t fSkipZip
! After being read, the buffer will not be unzipped.
Definition: TBranch.h:121
TBranch * fMother
! Pointer to top-level parent branch in the tree.
Definition: TBranch.h:112
Long64_t GetTotBytes(Option_t *option="") const
Return total number of bytes in the branch (excluding current buffer) if option ="*" includes all sub...
Definition: TBranch.cxx:1803
virtual Bool_t SetMakeClass(Bool_t decomposeObj=kTRUE)
Set the branch in a mode where the object are decomposed (Also known as MakeClass mode).
Definition: TBranch.cxx:2510
virtual void SetFile(TFile *file=0)
Set file where this branch writes/reads its buffers.
Definition: TBranch.cxx:2446
TBranch * fParent
! Pointer to parent branch.
Definition: TBranch.h:113
Int_t WriteBasket(TBasket *basket, Int_t where)
Definition: TBranch.h:141
virtual void SetOffset(Int_t offset=0)
Definition: TBranch.h:242
Int_t FlushOneBasket(UInt_t which)
If we have a write basket in memory and it contains some entries and has not yet been written to disk...
Definition: TBranch.cxx:1143
virtual Int_t GetExpectedType(TClass *&clptr, EDataType &type)
Fill expectedClass and expectedType with information on the data type of the object/values contained ...
Definition: TBranch.cxx:1489
virtual Int_t GetBasketSize() const
Definition: TBranch.h:176
virtual void SetFirstEntry(Long64_t entry)
set the first entry number (case of TBranchSTL)
Definition: TBranch.cxx:2858
Long64_t GetTotalSize(Option_t *option="") const
Return total number of bytes in the branch (including current buffer)
Definition: TBranch.cxx:1784
Long64_t GetZipBytes(Option_t *option="") const
Return total number of zip bytes in the branch if option ="*" includes all sub-branches of this branc...
Definition: TBranch.cxx:1821
virtual void SetBasketSize(Int_t buffsize)
Set the basket size The function makes sure that the basket size is greater than fEntryOffsetlen.
Definition: TBranch.cxx:2312
virtual void Refresh(TBranch *b)
Refresh this branch using new information in b This function is called by TTree::Refresh.
Definition: TBranch.cxx:2091
Int_t fWriteBasket
Last basket number written.
Definition: TBranch.h:88
Long64_t * fBasketSeek
[fMaxBaskets] Addresses of baskets on file
Definition: TBranch.h:110
Long64_t GetEntryNumber() const
Definition: TBranch.h:199
virtual void SetStatus(Bool_t status=1)
Set branch status to Process or DoNotProcess.
Definition: TBranch.cxx:2530
TObjArray * GetListOfLeaves()
Definition: TBranch.h:204
virtual void SetEntries(Long64_t entries)
Set the number of entries in this branch.
Definition: TBranch.cxx:2421
Int_t fReadBasket
! Current basket number when reading
Definition: TBranch.h:96
TDirectory * GetDirectory() const
Definition: TBranch.h:182
Long64_t fFirstEntry
Number of the first entry in this branch.
Definition: TBranch.h:102
virtual Int_t GetRow(Int_t row)
Return all elements of one row unpacked in internal array fValues [Actually just returns 1 (?...
Definition: TBranch.cxx:1706
Long64_t GetFirstEntry() const
Definition: TBranch.h:200
Int_t fBasketSize
Initial Size of Basket Buffer.
Definition: TBranch.h:86
Int_t Fill()
Definition: TBranch.h:164
virtual void Reset(Option_t *option="")
Reset a Branch.
Definition: TBranch.cxx:2140
Long64_t fEntryNumber
Current entry number (last one filled in this branch)
Definition: TBranch.h:89
TBranch * GetMother() const
Get our top-level parent branch in the tree.
Definition: TBranch.cxx:1725
Int_t fCompress
Compression level and algorithm.
Definition: TBranch.h:85
TBuffer * GetTransientBuffer(Int_t size)
Returns the transient buffer currently used by this TBranch for reading/writing baskets.
Definition: TBranch.cxx:496
virtual Int_t FillImpl(ROOT::Internal::TBranchIMTHelper *)
Loop on all leaves of this branch to fill Basket buffer.
Definition: TBranch.cxx:818
TBuffer * fEntryBuffer
! Buffer used to directly pass the content without streaming
Definition: TBranch.h:117
TBasket * fCurrentBasket
! Pointer to the current basket.
Definition: TBranch.h:100
Long64_t fFirstBasketEntry
! First entry in the current basket.
Definition: TBranch.h:98
void SetCompressionLevel(Int_t level=ROOT::RCompressionSetting::ELevel::kUseMin)
Set compression level.
Definition: TBranch.cxx:2366
Long64_t * GetBasketEntry() const
Definition: TBranch.h:174
Int_t GetEntryOffsetLen() const
Definition: TBranch.h:185
Long64_t fEntries
Number of entries.
Definition: TBranch.h:101
TTree * fTree
! Pointer to Tree header
Definition: TBranch.h:111
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:37
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:75
An array of clone (identical) objects.
Definition: TClonesArray.h:32
Describe directory structure in memory.
Definition: TDirectory.h:34
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:48
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:32
A doubly linked list.
Definition: TList.h:44
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
An array of TObjects.
Definition: TObjArray.h:37
EStatusBits
Definition: TObject.h:57
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
Class implementing or helping the various TTree cloning method.
Definition: TTreeCloner.h:38
A TTree object has a header with a name and a title.
Definition: TTree.h:71
const Int_t n
Definition: legend1.C:16
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
Definition: file.py:1
Definition: tree.py:1
@ kUseGlobal
Use the global compression algorithm.
Definition: Compression.h:81
@ kInherit
Some objects use this value to denote that the compression algorithm should be inherited from the par...
Definition: Compression.h:79
@ kUseGeneralPurpose
Use the recommended general-purpose setting; moderate read / write speed and compression ratio.
Definition: Compression.h:53