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