Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TTreeReaderValueFast.hxx
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Brian Bockelman, 2017-06-13
3
4/*************************************************************************
5 * Copyright (C) 1995-2017, 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_TTreeReaderValueFast
13#define ROOT_TTreeReaderValueFast
14
15
16////////////////////////////////////////////////////////////////////////////
17// //
18// TTreeReaderValueFast //
19// //
20// A simple interface for reading data from trees or chains. //
21// //
22// //
23////////////////////////////////////////////////////////////////////////////
24
26
27#include "TBranch.h"
28#include "TBufferFile.h"
29
30#include <type_traits>
31
32class TBranch;
33
34namespace ROOT {
35namespace Experimental {
36namespace Internal {
37
38/* All the common code shared by the fast reader templates.
39 */
41 public:
43
46
47 //////////////////////////////////////////////////////////////////////////////
48 /// Construct a tree value reader and register it with the reader object.
49 TTreeReaderValueFastBase(TTreeReaderFast* reader, const std::string &branchName) :
50 fBranchName(branchName),
51 fLeafName(branchName), // TODO: only support single-leaf branches for now.
52 fTreeReader(reader),
53 fBuffer(TBuffer::kWrite, 32*1024),
54 fEvtIndex(reader->GetIndexRef())
55 {
57 }
58
60 //printf("Getting events starting at %lld. Current remaining is %d events with base %lld.\n", eventNum, fRemaining, fEventBase);
61 if (fEventBase >= 0 && (fRemaining + fEventBase > eventNum)) {
62 Int_t adjust = (eventNum - fEventBase);
63 if (R__unlikely(Adjust(adjust) < 0)) {
64 //printf("Failed to adjust offset to mid-buffer.\n");
65 return -1;
66 }
67 fRemaining -= adjust;
68 } else {
70 if (R__unlikely(fRemaining < 0)) {
72 //printf("Failed to retrieve entries from the branch.\n");
73 return -1;
74 }
75 }
76 fEventBase = eventNum;
77 //printf("After getting events, the base is %lld with %d remaining.\n", fEventBase, fRemaining);
79 return fRemaining;
80 }
81
82 virtual const char *GetTypeName() {return "{UNDETERMINED}";}
83
84
85 protected:
86
87 // Adjust the current buffer offset forward N events.
88 virtual Int_t Adjust(Int_t eventCount) {
89 Int_t bufOffset = fBuffer.Length();
90 fBuffer.SetBufferOffset(bufOffset + eventCount*GetSize());
91 return 0;
92 }
93 virtual UInt_t GetSize() = 0;
94
96 fTreeReader = nullptr;
97 }
98
99 // Create the linkage between the TTreeReader's current tree and this ReaderValue
100 // object. After CreateProxy() is invoked, if fSetupStatus doesn't indicate an
101 // error, then we are pointing toward a valid TLeaf in the current tree
102 void CreateProxy();
103
105
106 // Returns the name of the branch type; will be used when the TBranch version to
107 // detect between the compile-time and runtime type names.
108 virtual const char *BranchTypeName() = 0;
109
110 std::string fBranchName; // Name of the branch we should read from.
111 std::string fLeafName; // The branch's leaf we should read from. NOTE: currently only support single-leaf branches.
112 TTreeReaderFast *fTreeReader{nullptr}; // Reader we belong to
113 TBranch * fBranch{nullptr}; // Actual branch object we are reading.
114 TLeaf * fLeaf{nullptr}; // Actual leaf we are reading.
115 TBufferFile fBuffer; // Buffer object holding the current events.
116 Int_t fRemaining{0}; // Number of events remaining in the buffer.
117 Int_t &fEvtIndex; // Current event index.
118 Long64_t fLastChainOffset{-1}; // Current chain in the TTree we are pointed at.
119 Long64_t fEventBase{-1}; // Event number of the current buffer position.
120
123
125};
126
127} // Internal
128
129template <typename T>
131
132 public:
133 TTreeReaderValueFast(TTreeReaderFast* reader, const std::string &branchname) : ROOT::Experimental::Internal::TTreeReaderValueFastBase(reader, branchname) {}
134
135 T* Get() {
136 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<T*>(fBuffer.GetCurrent()) + fEvtIndex));
137 }
138 T* operator->() { return Get(); }
139 T& operator*() { return *Get(); }
140
141 protected:
142 T* Deserialize(char *) {return nullptr;}
143
144 const char *GetTypeName() override {return "{INCOMPLETE}";}
145 UInt_t GetSize() override {return sizeof(T);}
146};
147
148template<>
150
151 public:
152
153 TTreeReaderValueFast(TTreeReaderFast& tr, const std::string &branchname) :
154 TTreeReaderValueFastBase(&tr, branchname) {}
155
156 float* Get() {
157 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<float*>(fBuffer.GetCurrent()) + fEvtIndex));
158 }
159 float* operator->() { return Get(); }
160 float& operator*() { return *Get(); }
161
162 protected:
163 const char *GetTypeName() override {return "float";}
164 const char *BranchTypeName() override {return "float";}
165 UInt_t GetSize() override {return sizeof(float);}
166 float * Deserialize(char *input) {frombuf(input, &fTmp); return &fTmp;}
167
168 float fTmp;
169};
170
171template <>
173
174 public:
175
176 TTreeReaderValueFast(TTreeReaderFast& tr, const std::string &branchname) :
177 TTreeReaderValueFastBase(&tr, branchname) {}
178
179 // TODO: why isn't template specialization working here?
180 double* Get() {
181 //printf("Double: Attempting to deserialize buffer %p from index %d.\n", fBuffer.GetCurrent(), fEvtIndex);
182 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<double*>(fBuffer.GetCurrent()) + fEvtIndex));
183 }
184 double* operator->() { return Get(); }
185 double& operator*() { return *Get(); }
186
187 protected:
188 const char *GetTypeName() override {return "double";}
189 const char *BranchTypeName() override {return "double";}
190 UInt_t GetSize() override {return sizeof(double);}
191 double* Deserialize(char *input) {frombuf(input, &fTmp); return &fTmp;}
192
193 double fTmp;
194};
195
196template <>
198
199 public:
200
201 TTreeReaderValueFast(TTreeReaderFast& tr, const std::string &branchname) :
202 TTreeReaderValueFastBase(&tr, branchname) {}
203
205 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<Int_t*>(fBuffer.GetCurrent()) + fEvtIndex));
206 }
207 Int_t* operator->() { return Get(); }
208 Int_t& operator*() { return *Get(); }
209
210 protected:
211 const char *GetTypeName() override {return "integer";}
212 const char *BranchTypeName() override {return "integer";}
213 UInt_t GetSize() override {return sizeof(Int_t);}
214 Int_t* Deserialize(char *input) {frombuf(input, &fTmp); return &fTmp;}
215
217};
218
219template <>
221
222 public:
223
224 TTreeReaderValueFast(TTreeReaderFast& tr, const std::string &branchname) :
225 TTreeReaderValueFastBase(&tr, branchname) {}
226
228 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<UInt_t*>(fBuffer.GetCurrent()) + fEvtIndex));
229 }
230 UInt_t* operator->() { return Get(); }
231 UInt_t& operator*() { return *Get(); }
232
233 protected:
234 const char *GetTypeName() override {return "unsigned integer";}
235 const char *BranchTypeName() override {return "unsigned integer";}
236 UInt_t GetSize() override {return sizeof(UInt_t);}
237 UInt_t* Deserialize(char *input) {frombuf(input, &fTmp); return &fTmp;}
238
240};
241
242template <>
244
245 public:
246
247 TTreeReaderValueFast(TTreeReaderFast& tr, const std::string &branchname) :
248 TTreeReaderValueFastBase(&tr, branchname) {}
249
250 bool* Get() {
251 return Deserialize(reinterpret_cast<char *>(reinterpret_cast<bool*>(fBuffer.GetCurrent()) + fEvtIndex));
252 }
253 bool* operator->() { return Get(); }
254 bool& operator*() { return *Get(); }
255
256 protected:
257 const char *GetTypeName() override {return "unsigned integer";}
258 const char *BranchTypeName() override {return "unsigned integer";}
259 UInt_t GetSize() override {return sizeof(bool);}
260 bool* Deserialize(char *input) {frombuf(input, &fTmp); return &fTmp;}
261
262 bool fTmp;
263};
264
265} // Experimental
266} // ROOT
267
268#endif // ROOT_TTreeReaderValueFast
void frombuf(char *&buf, Bool_t *x)
Definition Bytes.h:278
#define R__unlikely(expr)
Definition RConfig.hxx:603
int Int_t
Definition RtypesCore.h:45
unsigned int UInt_t
Definition RtypesCore.h:46
long long Long64_t
Definition RtypesCore.h:80
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void input
Int_t GetEntriesSerialized(Long64_t evt, TBuffer &user_buf)
See TBranch::GetEntriesSerialized(Long64_t evt, TBuffer &user_buf);.
Definition TBranch.h:321
void CreateProxy()
Attach this value to the appropriate branch on the tree.
ROOT::Internal::TTreeReaderValueBase::ESetupStatus fSetupStatus
TTreeReaderValueFastBase(const TTreeReaderValueFastBase &)=delete
TTreeReaderValueFastBase(TTreeReaderFast *reader, const std::string &branchName)
Construct a tree value reader and register it with the reader object.
ROOT::Internal::TTreeReaderValueBase::ESetupStatus GetSetupStatus() const
virtual ~TTreeReaderValueFastBase()
Unregister from tree reader, cleanup.
ROOT::Internal::TTreeReaderValueBase::EReadStatus fReadStatus
virtual ROOT::Internal::TTreeReaderValueBase::EReadStatus GetReadStatus() const
void RegisterValueReader(ROOT::Experimental::Internal::TTreeReaderValueFastBase *reader)
Add a value reader for this tree.
TTreeReaderValueFast(TTreeReaderFast &tr, const std::string &branchname)
TTreeReaderValueFast(TTreeReaderFast &tr, const std::string &branchname)
TTreeReaderValueFast(TTreeReaderFast &tr, const std::string &branchname)
TTreeReaderValueFast(TTreeReaderFast &tr, const std::string &branchname)
TTreeReaderValueFast(TTreeReaderFast &tr, const std::string &branchname)
TTreeReaderValueFast(TTreeReaderFast *reader, const std::string &branchname)
@ kSetupNotSetup
No initialization has happened yet.
@ kReadNothingYet
Data now yet accessed.
A TTree is a list of TBranches.
Definition TBranch.h:93
ROOT::Experimental::Internal::TBulkBranchRead & GetBulkRead()
Definition TBranch.h:218
The concrete implementation of TBuffer for writing/reading to/from a ROOT file or socket.
Definition TBufferFile.h:47
Buffer base class used for serializing objects.
Definition TBuffer.h:43
char * GetCurrent() const
Definition TBuffer.h:97
void SetBufferOffset(Int_t offset=0)
Definition TBuffer.h:93
Int_t Length() const
Definition TBuffer.h:100
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition TLeaf.h:57
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.