Logo ROOT   6.18/05
Reference Guide
TTreeReader.h
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Axel Naumann, 2010-08-02
3
4/*************************************************************************
5 * Copyright (C) 1995-2013, 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_TTreeReader
13#define ROOT_TTreeReader
14
15
16////////////////////////////////////////////////////////////////////////////
17// //
18// TTreeReader //
19// //
20// A simple interface for reading trees or chains. //
21// //
22// //
23////////////////////////////////////////////////////////////////////////////
24
25#include "THashTable.h"
26#include "TTree.h"
27#include "TTreeReaderUtils.h"
28#include "TNotifyLink.h"
29
30#include <deque>
31#include <iterator>
32#include <unordered_map>
33
34class TDictionary;
35class TDirectory;
36class TFileCollection;
37
38namespace ROOT {
39namespace Internal {
40 class TBranchProxyDirector;
41}
42}
43
44class TTreeReader: public TObject {
45public:
46
47 ///\class TTreeReader::Iterator_t
48 /// Iterate through the entries of a TTree.
49 ///
50 /// This iterator drives the associated TTreeReader; its
51 /// dereferencing (and actually even the iteration) will
52 /// set the entry number represented by this iterator.
53 /// It does not really represent a data element; it simply
54 /// returns the entry number (or -1 once the end of the tree
55 /// is reached).
57 public std::iterator<std::input_iterator_tag, const Long64_t, Long64_t> {
58 private:
59 Long64_t fEntry; ///< Entry number of the tree referenced by this iterator; -1 is invalid.
60 TTreeReader* fReader; ///< The reader we select the entries on.
61
62 /// Whether the iterator points to a valid entry.
63 bool IsValid() const { return fEntry >= 0; }
64
65 public:
66 /// Default-initialize the iterator as "past the end".
68
69 /// Initialize the iterator with the reader it steers and a
70 /// tree entry number; -1 is invalid.
72 fEntry(entry), fReader(&reader) {}
73
74 /// Compare two iterators for equality.
75 bool operator==(const Iterator_t& lhs) const {
76 // From C++14: value initialized (past-end) it compare equal.
77 if (!IsValid() && !lhs.IsValid()) return true;
78 return fEntry == lhs.fEntry && fReader == lhs.fReader;
79 }
80
81 /// Compare two iterators for inequality.
82 bool operator!=(const Iterator_t& lhs) const {
83 return !(*this == lhs);
84 }
85
86 /// Increment the iterator (postfix i++).
88 Iterator_t ret = *this;
89 this->operator++();
90 return ret;
91 }
92
93 /// Increment the iterator (prefix ++i).
95 if (IsValid()) {
96 ++fEntry;
97 // Force validity check of new fEntry.
98 this->operator*();
99 // Don't set the old entry: op* will if needed, and
100 // in most cases it just adds a lot of spinning back
101 // and forth: in most cases teh sequence is ++i; *i.
102 }
103 return *this;
104 }
105
106 /// Set the entry number in the reader and return it.
108 if (IsValid()) {
109 // If we cannot access that entry, mark the iterator invalid.
111 fEntry = -1;
112 }
113 }
114 // There really is no data in this iterator; return the number.
115 return fEntry;
116 }
117
118 const Long64_t& operator*() const {
119 return **const_cast<Iterator_t*>(this);
120 }
121 };
122
124
126 kEntryValid = 0, ///< data read okay
127 kEntryNotLoaded, ///< no entry has been loaded yet
128 kEntryNoTree, ///< the tree does not exist
129 kEntryNotFound, ///< the tree entry number does not exist
130 kEntryChainSetupError, ///< problem in accessing a chain element, e.g. file without the tree
131 kEntryChainFileError, ///< problem in opening a chain's file
132 kEntryDictionaryError, ///< problem reading dictionary info from tree
133 kEntryBeyondEnd, ///< last entry loop has reached its end
134 kEntryBadReader, ///< One of the readers was not successfully initialized.
135 kEntryUnknownError ///< LoadTree return less than -4, likely a 'newer' error code.
136 };
137
139 kNoTree = 0, ///< default state, no TTree is connected (formerly 'Zombie' state)
140 kLoadTreeNone, ///< Notify has not been called yet.
141 kInternalLoadTree, ///< Notify/LoadTree was last called from SetEntryBase
142 kExternalLoadTree ///< User code called LoadTree directly.
143 };
144
145 static constexpr const char * const fgEntryStatusText[kEntryBeyondEnd + 1] = {
146 "valid entry",
147 "the tree does not exist",
148 "the tree entry number does not exist",
149 "cannot access chain element",
150 "problem in opening a chain's file",
151 "problem reading dictionary info from tree",
152 "last entry loop has reached its end"
153 };
154
155 TTreeReader();
156
157 TTreeReader(TTree* tree, TEntryList* entryList = nullptr);
158 TTreeReader(const char* keyname, TDirectory* dir, TEntryList* entryList = nullptr);
159 TTreeReader(const char* keyname, TEntryList* entryList = nullptr):
160 TTreeReader(keyname, nullptr, entryList) {}
161
162 ~TTreeReader();
163
164 void SetTree(TTree* tree, TEntryList* entryList = nullptr);
165 void SetTree(const char* keyname, TEntryList* entryList = nullptr) {
166 SetTree(keyname, nullptr, entryList);
167 }
168 void SetTree(const char* keyname, TDirectory* dir, TEntryList* entryList = nullptr);
169
170 Bool_t IsChain() const { return TestBit(kBitIsChain); }
171
173
174 TTree* GetTree() const { return fTree; }
175 TEntryList* GetEntryList() const { return fEntryList; }
176
177 ///\{ \name Entry setters
178
179 /// Move to the next entry (or index of the TEntryList if that is set).
180 ///
181 /// \return false if the previous entry was already the last entry. This allows
182 /// the function to be used in `while (reader.Next()) { ... }`
184 return SetEntry(GetCurrentEntry() + 1) == kEntryValid;
185 }
186
187 /// Set the next entry (or index of the TEntryList if that is set).
188 ///
189 /// \param entry If not TEntryList is set, the entry is a global entry (i.e.
190 /// not the entry number local to the chain's current tree).
191 /// \returns the `entry`'s read status, i.e. whether the entry is available.
193
194 /// Set the next local tree entry. If a TEntryList is set, this function is
195 /// equivalent to `SetEntry()`.
196 ///
197 /// \param entry Entry number of the TChain's current TTree. This is the
198 /// entry number passed for instance by `TSelector::Process(entry)`, i.e.
199 /// within `TSelector::Process()` always use `SetLocalEntry()` and not
200 /// `SetEntry()`!
201 /// \return the `entry`'s read status, i.e. whether the entry is available.
203
204 /// Set the begin and end entry numbers
205 ///
206 /// \param beginEntry The first entry that `Next()` will load.
207 /// \param endEntry The entry that `Next()` will return `kFALSE` on (i.e. not
208 /// load anymore).
209 EEntryStatus SetEntriesRange(Long64_t beginEntry, Long64_t endEntry);
210
211 /// Get the begin and end entry numbers
212 ///
213 /// \return a pair contained the begin and end entry numbers.
214 std::pair<Long64_t, Long64_t> GetEntriesRange() const { return std::make_pair(fBeginEntry, fEndEntry); }
215
216 /// Restart a Next() loop from entry 0 (of TEntryList index 0 of fEntryList is set).
217 void Restart();
218
219 ///\}
220
222
223 Long64_t GetEntries() const;
225
226 /// Returns the index of the current entry being read.
227 ///
228 /// If `IsChain()`, the returned index corresponds to the global entry number
229 /// (i.e. not the entry number local to the chain's current tree).
230 /// If `fEntryList`, the returned index corresponds to an index in the
231 /// TEntryList; to translate to the TChain's / TTree's entry number pass it
232 /// through `reader.GetEntryList()->GetEntry(reader.GetCurrentEntry())`.
233 Long64_t GetCurrentEntry() const { return fEntry; }
234
235 Bool_t Notify();
236
237 /// Return an iterator to the 0th TTree entry.
239 return Iterator_t(*this, 0);
240 }
241 /// Return an iterator beyond the last TTree entry.
242 Iterator_t end() const { return Iterator_t(); }
243
244protected:
245 using NamedProxies_t = std::unordered_map<std::string, std::unique_ptr<ROOT::Internal::TNamedBranchProxy>>;
246 void Initialize();
247 ROOT::Internal::TNamedBranchProxy* FindProxy(const char* branchname) const
248 {
249 const auto proxyIt = fProxies.find(branchname);
250 return fProxies.end() != proxyIt ? proxyIt->second.get() : nullptr;
251 }
252
254 {
255 auto bpName = p->GetName();
256#ifndef NDEBUG
257 if (fProxies.end() != fProxies.find(bpName)) {
258 std::string err = "A proxy with key " + std::string(bpName) + " was already stored!";
259 throw std::runtime_error(err);
260 }
261#endif
262
263 fProxies[bpName].reset(p);
264 }
265
268
270
272
273private:
274
275 std::string GetProxyKey(const char *branchname)
276 {
277 std::string key(branchname);
278 //key += reinterpret_cast<std::uintptr_t>(fTree);
279 return key;
280 }
281
283 kBitIsChain = BIT(14), ///< our tree is a chain
284 kBitHaveWarnedAboutEntryListAttachedToTTree = BIT(15), ///< the tree had a TEntryList and we have warned about that
285 kBitSetEntryBaseCallingLoadTree = BIT(16) ///< SetEntryBase is in the process of calling TChain/TTree::LoadTree.
286 };
287
288 TTree* fTree = nullptr; ///< tree that's read
289 TEntryList* fEntryList = nullptr; ///< entry list to be used
290 EEntryStatus fEntryStatus = kEntryNotLoaded; ///< status of most recent read request
291 ELoadTreeStatus fLoadTreeStatus = kNoTree; ///< Indicator on how LoadTree was called 'last' time.
292 TNotifyLink<TTreeReader> fNotify; // Callback object used by the TChain to update this proxy
293 ROOT::Internal::TBranchProxyDirector* fDirector = nullptr; ///< proxying director, owned
294 std::deque<ROOT::Internal::TFriendProxy*> fFriendProxies; ///< proxying for friend TTrees, owned
295 std::deque<ROOT::Internal::TTreeReaderValueBase*> fValues; ///< readers that use our director
296 NamedProxies_t fProxies; ///< attached ROOT::TNamedBranchProxies; owned
297
298 Long64_t fEntry = -1; ///< Current (non-local) entry of fTree or of fEntryList if set.
299
300 /// The end of the entry loop. When set (i.e. >= 0), it provides a way
301 /// to stop looping over the TTree when we reach a certain entry: Next()
302 /// returns kFALSE when GetCurrentEntry() reaches fEndEntry.
304 Long64_t fBeginEntry = 0LL; ///< This allows us to propagate the range to the TTreeCache
305 Bool_t fProxiesSet = kFALSE; ///< True if the proxies have been set, false otherwise
306 Bool_t fSetEntryBaseCallingLoadTree = kFALSE; ///< True if during the LoadTree execution triggered by SetEntryBase.
307
310
311 ClassDef(TTreeReader, 0); // A simple interface to read trees
312};
313
314#endif // defined TTreeReader
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
#define ClassDef(name, id)
Definition: Rtypes.h:326
#define BIT(n)
Definition: Rtypes.h:83
Base class of TTreeReaderArray.
Base class of TTreeReaderValue.
This class defines an abstract interface that must be implemented by all classes that contain diction...
Definition: TDictionary.h:159
Describe directory structure in memory.
Definition: TDirectory.h:34
A List of entry numbers in a TTree or TChain.
Definition: TEntryList.h:26
Class that contains a list of TFileInfo's and accumulated meta data information about its entries.
Mother of all ROOT objects.
Definition: TObject.h:37
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:172
EStatusBits
Definition: TObject.h:57
Iterate through the entries of a TTree.
Definition: TTreeReader.h:57
Iterator_t & operator++()
Increment the iterator (prefix ++i).
Definition: TTreeReader.h:94
Iterator_t()
Default-initialize the iterator as "past the end".
Definition: TTreeReader.h:67
const Long64_t & operator*() const
Definition: TTreeReader.h:118
Long64_t fEntry
Entry number of the tree referenced by this iterator; -1 is invalid.
Definition: TTreeReader.h:59
Iterator_t(TTreeReader &reader, Long64_t entry)
Initialize the iterator with the reader it steers and a tree entry number; -1 is invalid.
Definition: TTreeReader.h:71
bool operator==(const Iterator_t &lhs) const
Compare two iterators for equality.
Definition: TTreeReader.h:75
TTreeReader * fReader
The reader we select the entries on.
Definition: TTreeReader.h:60
const Long64_t & operator*()
Set the entry number in the reader and return it.
Definition: TTreeReader.h:107
bool IsValid() const
Whether the iterator points to a valid entry.
Definition: TTreeReader.h:63
bool operator!=(const Iterator_t &lhs) const
Compare two iterators for inequality.
Definition: TTreeReader.h:82
Iterator_t operator++(int)
Increment the iterator (postfix i++).
Definition: TTreeReader.h:87
A simple, robust and fast interface to read values from ROOT columnar datasets such as TTree,...
Definition: TTreeReader.h:44
TTreeReader()
Default constructor. Call SetTree to connect to a TTree.
Bool_t fProxiesSet
True if the proxies have been set, false otherwise.
Definition: TTreeReader.h:305
ELoadTreeStatus fLoadTreeStatus
Indicator on how LoadTree was called 'last' time.
Definition: TTreeReader.h:291
void SetTree(const char *keyname, TEntryList *entryList=nullptr)
Definition: TTreeReader.h:165
Long64_t GetEntries() const
Returns the number of entries of the TEntryList if one is provided, else of the TTree / TChain,...
EEntryStatus fEntryStatus
status of most recent read request
Definition: TTreeReader.h:290
std::unordered_map< std::string, std::unique_ptr< ROOT::Internal::TNamedBranchProxy > > NamedProxies_t
Definition: TTreeReader.h:245
void SetTree(TTree *tree, TEntryList *entryList=nullptr)
Set (or update) the which tree to read from.
std::pair< Long64_t, Long64_t > GetEntriesRange() const
Get the begin and end entry numbers.
Definition: TTreeReader.h:214
TNotifyLink< TTreeReader > fNotify
Definition: TTreeReader.h:292
Bool_t SetProxies()
Tell readers we now have a tree.
Bool_t IsChain() const
Definition: TTreeReader.h:170
@ kEntryNotFound
the tree entry number does not exist
Definition: TTreeReader.h:129
@ kEntryUnknownError
LoadTree return less than -4, likely a 'newer' error code.
Definition: TTreeReader.h:135
@ kEntryDictionaryError
problem reading dictionary info from tree
Definition: TTreeReader.h:132
@ kEntryChainSetupError
problem in accessing a chain element, e.g. file without the tree
Definition: TTreeReader.h:130
@ kEntryNotLoaded
no entry has been loaded yet
Definition: TTreeReader.h:127
@ kEntryBeyondEnd
last entry loop has reached its end
Definition: TTreeReader.h:133
@ kEntryChainFileError
problem in opening a chain's file
Definition: TTreeReader.h:131
@ kEntryNoTree
the tree does not exist
Definition: TTreeReader.h:128
@ kEntryBadReader
One of the readers was not successfully initialized.
Definition: TTreeReader.h:134
@ kEntryValid
data read okay
Definition: TTreeReader.h:126
std::deque< ROOT::Internal::TTreeReaderValueBase * > fValues
readers that use our director
Definition: TTreeReader.h:295
Bool_t Notify()
Callback from TChain and TTree's LoadTree.
TTree * fTree
tree that's read
Definition: TTreeReader.h:288
ROOT::Internal::TBranchProxyDirector * fDirector
proxying director, owned
Definition: TTreeReader.h:293
TTree * GetTree() const
Definition: TTreeReader.h:174
Iterator_t end() const
Return an iterator beyond the last TTree entry.
Definition: TTreeReader.h:242
~TTreeReader()
Tell all value readers that the tree reader does not exist anymore.
EEntryStatus SetEntriesRange(Long64_t beginEntry, Long64_t endEntry)
Set the begin and end entry numbers.
std::deque< ROOT::Internal::TFriendProxy * > fFriendProxies
proxying for friend TTrees, owned
Definition: TTreeReader.h:294
std::string GetProxyKey(const char *branchname)
Definition: TTreeReader.h:275
Bool_t fSetEntryBaseCallingLoadTree
True if during the LoadTree execution triggered by SetEntryBase.
Definition: TTreeReader.h:306
EEntryStatus GetEntryStatus() const
Definition: TTreeReader.h:221
@ kInternalLoadTree
Notify/LoadTree was last called from SetEntryBase.
Definition: TTreeReader.h:141
@ kNoTree
default state, no TTree is connected (formerly 'Zombie' state)
Definition: TTreeReader.h:139
@ kExternalLoadTree
User code called LoadTree directly.
Definition: TTreeReader.h:142
@ kLoadTreeNone
Notify has not been called yet.
Definition: TTreeReader.h:140
static constexpr const char *const fgEntryStatusText[kEntryBeyondEnd+1]
Definition: TTreeReader.h:145
void Initialize()
Initialization of the director.
void Restart()
Restart a Next() loop from entry 0 (of TEntryList index 0 of fEntryList is set).
EEntryStatus SetEntryBase(Long64_t entry, Bool_t local)
Load an entry into the tree, return the status of the read.
TEntryList * fEntryList
entry list to be used
Definition: TTreeReader.h:289
Long64_t fEntry
Current (non-local) entry of fTree or of fEntryList if set.
Definition: TTreeReader.h:298
Bool_t RegisterValueReader(ROOT::Internal::TTreeReaderValueBase *reader)
Add a value reader for this tree.
Long64_t fBeginEntry
This allows us to propagate the range to the TTreeCache.
Definition: TTreeReader.h:304
void AddProxy(ROOT::Internal::TNamedBranchProxy *p)
Definition: TTreeReader.h:253
void DeregisterValueReader(ROOT::Internal::TTreeReaderValueBase *reader)
Remove a value reader for this tree.
@ kBitSetEntryBaseCallingLoadTree
SetEntryBase is in the process of calling TChain/TTree::LoadTree.
Definition: TTreeReader.h:285
@ kBitHaveWarnedAboutEntryListAttachedToTTree
the tree had a TEntryList and we have warned about that
Definition: TTreeReader.h:284
@ kBitIsChain
our tree is a chain
Definition: TTreeReader.h:283
EEntryStatus SetLocalEntry(Long64_t entry)
Set the next local tree entry.
Definition: TTreeReader.h:202
NamedProxies_t fProxies
attached ROOT::TNamedBranchProxies; owned
Definition: TTreeReader.h:296
TEntryList * GetEntryList() const
Definition: TTreeReader.h:175
Bool_t IsInvalid() const
Definition: TTreeReader.h:172
Iterator_t begin()
Return an iterator to the 0th TTree entry.
Definition: TTreeReader.h:238
TTreeReader(const char *keyname, TEntryList *entryList=nullptr)
Definition: TTreeReader.h:159
Long64_t fEndEntry
The end of the entry loop.
Definition: TTreeReader.h:303
Iterator_t iterator
Definition: TTreeReader.h:123
EEntryStatus SetEntry(Long64_t entry)
Set the next entry (or index of the TEntryList if that is set).
Definition: TTreeReader.h:192
Bool_t Next()
Move to the next entry (or index of the TEntryList if that is set).
Definition: TTreeReader.h:183
ROOT::Internal::TNamedBranchProxy * FindProxy(const char *branchname) const
Definition: TTreeReader.h:247
Long64_t GetCurrentEntry() const
Returns the index of the current entry being read.
Definition: TTreeReader.h:233
A TTree represents a columnar dataset.
Definition: TTree.h:71
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
Definition: tree.py:1