CMS 3D CMS Logo

RootTree.cc
Go to the documentation of this file.
1 #include "RootTree.h"
2 #include "RootDelayedReader.h"
6 #include "InputFile.h"
7 #include "TTree.h"
8 #include "TTreeIndex.h"
9 #include "TTreeCache.h"
10 
11 #include <cassert>
12 #include <iostream>
13 
14 namespace edm {
15  namespace {
16  TBranch* getAuxiliaryBranch(TTree* tree, BranchType const& branchType) {
17  TBranch* branch = tree->GetBranch(BranchTypeToAuxiliaryBranchName(branchType).c_str());
18  if (branch == nullptr) {
19  branch = tree->GetBranch(BranchTypeToAuxBranchName(branchType).c_str());
20  }
21  return branch;
22  }
23  TBranch* getProductProvenanceBranch(TTree* tree, BranchType const& branchType) {
24  TBranch* branch = tree->GetBranch(BranchTypeToBranchEntryInfoBranchName(branchType).c_str());
25  return branch;
26  }
27  }
28  RootTree::RootTree(std::shared_ptr<InputFile> filePtr,
29  BranchType const& branchType,
30  unsigned int nIndexes,
31  unsigned int maxVirtualSize,
32  unsigned int cacheSize,
33  unsigned int learningEntries,
34  bool enablePrefetching,
35  InputType inputType) :
36  filePtr_(filePtr),
37  tree_(dynamic_cast<TTree*>(filePtr_.get() != nullptr ? filePtr_->Get(BranchTypeToProductTreeName(branchType).c_str()) : nullptr)),
38  metaTree_(dynamic_cast<TTree*>(filePtr_.get() != nullptr ? filePtr_->Get(BranchTypeToMetaDataTreeName(branchType).c_str()) : nullptr)),
39  branchType_(branchType),
40  auxBranch_(tree_ ? getAuxiliaryBranch(tree_, branchType_) : nullptr),
41  treeCache_(),
42  rawTreeCache_(),
43  triggerTreeCache_(),
44  rawTriggerTreeCache_(),
45  trainedSet_(),
46  triggerSet_(),
47  entries_(tree_ ? tree_->GetEntries() : 0),
48  entryNumber_(-1),
49  entryNumberForIndex_(new std::vector<EntryNumber>(nIndexes, IndexIntoFile::invalidEntry)),
50  branchNames_(),
51  branches_(new BranchMap),
52  trainNow_(false),
53  switchOverEntry_(-1),
54  rawTriggerSwitchOverEntry_(-1),
55  learningEntries_(learningEntries),
56  cacheSize_(cacheSize),
57  treeAutoFlush_(0),
58  enablePrefetching_(enablePrefetching),
59  enableTriggerCache_(branchType_ == InEvent),
60  rootDelayedReader_(new RootDelayedReader(*this, filePtr, inputType)),
61  branchEntryInfoBranch_(metaTree_ ? getProductProvenanceBranch(metaTree_, branchType_) : (tree_ ? getProductProvenanceBranch(tree_, branchType_) : nullptr)),
62  infoTree_(dynamic_cast<TTree*>(filePtr_.get() != nullptr ? filePtr->Get(BranchTypeToInfoTreeName(branchType).c_str()) : nullptr)) // backward compatibility
63  {
64  if(not tree_) {
65  throw cms::Exception("WrongFileFormat")<< "The ROOT file does not contain a TTree named "<<BranchTypeToProductTreeName(branchType)<<"\n This is either not an edm ROOT file or is one that has been corrupted.";
66  }
67  // On merged files in older releases of ROOT, the autoFlush setting is always negative; we must guess.
68  // TODO: On newer merged files, we should be able to get this from the cluster iterator.
69  long treeAutoFlush = (tree_ ? tree_->GetAutoFlush() : 0);
70  if (treeAutoFlush < 0) {
71  // The "+1" is here to avoid divide-by-zero in degenerate cases.
72  Long64_t averageEventSizeBytes = tree_->GetZipBytes() / (tree_->GetEntries()+1) + 1;
73  treeAutoFlush_ = cacheSize_/averageEventSizeBytes+1;
74  } else {
75  treeAutoFlush_ = treeAutoFlush;
76  }
79  }
80  setTreeMaxVirtualSize(maxVirtualSize);
81  setCacheSize(cacheSize);
82  if (tree_) {
83  Int_t branchCount = tree_->GetListOfBranches()->GetEntriesFast();
84  trainedSet_.reserve(branchCount);
85  triggerSet_.reserve(branchCount);
86  }
87  }
88 
90  }
91 
93  RootTree::entryNumberForIndex(unsigned int index) const {
94  assert(index < entryNumberForIndex_->size());
95  return (*entryNumberForIndex_)[index];
96  }
97 
98  void
100  assert(index < entryNumberForIndex_->size());
101  (*entryNumberForIndex_)[index] = entryNumber();
102  }
103 
104  bool
106  if (metaTree_ == nullptr || metaTree_->GetNbranches() == 0) {
107  return tree_ != nullptr && auxBranch_ != nullptr;
108  }
109  if (tree_ != nullptr && auxBranch_ != nullptr && metaTree_ != nullptr) { // backward compatibility
110  if (branchEntryInfoBranch_ != nullptr || infoTree_ != nullptr) return true; // backward compatibility
111  return (entries_ == metaTree_->GetEntries() && tree_->GetNbranches() <= metaTree_->GetNbranches() + 1); // backward compatibility
112  } // backward compatibility
113  return false;
114  }
115 
118  rootDelayedReader_->reset();
119  return rootDelayedReader_.get();
120  }
121 
124  return rootDelayedReader_.get();
125  }
126 
127  void
129  assert(isValid());
130  if(tree_->GetBranch(oldBranchName.c_str()) == nullptr){
131  prod.setDropped(true);
132  }
133  }
134 
135  void
137  BranchDescription const& prod,
138  std::string const& oldBranchName) {
139  assert(isValid());
140  //use the translated branch name
141  TBranch* branch = tree_->GetBranch(oldBranchName.c_str());
143  info.productBranch_ = nullptr;
144  if (prod.present()) {
145  info.productBranch_ = branch;
146  //we want the new branch name for the JobReport
147  branchNames_.push_back(prod.branchName());
148  }
149  TTree* provTree = (metaTree_ != nullptr ? metaTree_ : tree_);
150  info.provenanceBranch_ = provTree->GetBranch(oldBranchName.c_str());
151  branches_->insert(std::make_pair(key, info));
152  }
153 
154  void
155  RootTree::dropBranch(std::string const& oldBranchName) {
156  //use the translated branch name
157  TBranch* branch = tree_->GetBranch(oldBranchName.c_str());
158  if (branch != nullptr) {
159  TObjArray* leaves = tree_->GetListOfLeaves();
160  int entries = leaves->GetEntries();
161  for (int i = 0; i < entries; ++i) {
162  TLeaf* leaf = (TLeaf*)(*leaves)[i];
163  if (leaf == nullptr) continue;
164  TBranch* br = leaf->GetBranch();
165  if (br == nullptr) continue;
166  if (br->GetMother() == branch) {
167  leaves->Remove(leaf);
168  }
169  }
170  leaves->Compress();
171  tree_->GetListOfBranches()->Remove(branch);
172  tree_->GetListOfBranches()->Compress();
173  delete branch;
174  }
175  }
176 
177  roottree::BranchMap const&
178  RootTree::branches() const {return *branches_;}
179 
180  void
181  RootTree::setCacheSize(unsigned int cacheSize) {
182  cacheSize_ = cacheSize;
183  tree_->SetCacheSize(static_cast<Long64_t>(cacheSize));
184  treeCache_.reset(dynamic_cast<TTreeCache*>(filePtr_->GetCacheRead()));
185  if(treeCache_) treeCache_->SetEnablePrefetching(enablePrefetching_);
186  filePtr_->SetCacheRead(nullptr);
187  rawTreeCache_.reset();
188  }
189 
190  void
191  RootTree::setTreeMaxVirtualSize(int treeMaxVirtualSize) {
192  if (treeMaxVirtualSize >= 0) tree_->SetMaxVirtualSize(static_cast<Long64_t>(treeMaxVirtualSize));
193  }
194 
195  void
197  filePtr_->SetCacheRead(treeCache_.get());
198 
199  // Detect a backward skip. If the skip is sufficiently large, we roll the dice and reset the treeCache.
200  // This will cause some amount of over-reading: we pre-fetch all the events in some prior cluster.
201  // However, because reading one event in the cluster is supposed to be equivalent to reading all events in the cluster,
202  // we're not incurring additional over-reading - we're just doing it more efficiently.
203  // NOTE: Constructor guarantees treeAutoFlush_ is positive, even if TTree->GetAutoFlush() is negative.
204  if ((theEntryNumber < static_cast<EntryNumber>(entryNumber_-treeAutoFlush_)) &&
205  (treeCache_) && (!treeCache_->IsLearning()) && (entries_ > 0) && (switchOverEntry_ >= 0)) {
206  treeCache_->SetEntryRange(theEntryNumber, entries_);
207  treeCache_->FillBuffer();
208  }
209 
210  entryNumber_ = theEntryNumber;
211  tree_->LoadTree(entryNumber_);
212  filePtr_->SetCacheRead(nullptr);
213  if(treeCache_ && trainNow_ && entryNumber_ >= 0) {
214  startTraining();
215  trainNow_ = false;
216  trainedSet_.clear();
217  triggerSet_.clear();
219  }
220  if (treeCache_ && treeCache_->IsLearning() && switchOverEntry_ >= 0 && entryNumber_ >= switchOverEntry_) {
221  stopTraining();
222  }
223  }
224 
225  // The actual implementation is done below; it's split in this strange
226  // manner in order to keep a by-definition-rare code path out of the instruction cache.
227  inline TTreeCache*
229  if (!treeCache_->IsAsyncReading() && enableTriggerCache_ && (trainedSet_.find(branch) == trainedSet_.end())) {
230  return checkTriggerCacheImpl(branch, entryNumber);
231  } else {
232  return nullptr;
233  }
234  }
235 
236  // See comments in the header. If this function is called, we already know
237  // the trigger cache is active and it was a cache miss for the regular cache.
238  TTreeCache*
240  // This branch is not going to be in the cache.
241  // Assume this is a "trigger pattern".
242  // Always make sure the branch is added to the trigger set.
243  if (triggerSet_.find(branch) == triggerSet_.end()) {
244  triggerSet_.insert(branch);
245  if (triggerTreeCache_.get()) { triggerTreeCache_->AddBranch(branch, kTRUE); }
246  }
247 
248  if (rawTriggerSwitchOverEntry_ < 0) {
249  // The trigger has never fired before. Take everything not in the
250  // trainedSet and load it from disk
251 
252  // Calculate the end of the next cluster; triggers in the next cluster
253  // will use the triggerCache, not the rawTriggerCache.
254  //
255  // Guarantee that rawTriggerSwitchOverEntry_ is positive (non-zero) after completion
256  // of this if-block.
257  TTree::TClusterIterator clusterIter = tree_->GetClusterIterator(entryNumber);
258  while ((rawTriggerSwitchOverEntry_ < entryNumber) || (rawTriggerSwitchOverEntry_ <= 0)) {
259  rawTriggerSwitchOverEntry_ = clusterIter();
260  }
261 
262  // ROOT will automatically expand the cache to fit one cluster; hence, we use
263  // 5 MB as the cache size below
264  tree_->SetCacheSize(static_cast<Long64_t>(5*1024*1024));
265  rawTriggerTreeCache_.reset(dynamic_cast<TTreeCache*>(filePtr_->GetCacheRead()));
266  if(rawTriggerTreeCache_) rawTriggerTreeCache_->SetEnablePrefetching(false);
267  TObjArray *branches = tree_->GetListOfBranches();
268  int branchCount = branches->GetEntriesFast();
269 
270  // Train the rawTriggerCache to have everything not in the regular cache.
271  rawTriggerTreeCache_->SetLearnEntries(0);
272  rawTriggerTreeCache_->SetEntryRange(entryNumber, rawTriggerSwitchOverEntry_);
273  for (int i=0;i<branchCount;i++) {
274  TBranch *tmp_branch = (TBranch*)branches->UncheckedAt(i);
275  if (trainedSet_.find(tmp_branch) != trainedSet_.end()) {
276  continue;
277  }
278  rawTriggerTreeCache_->AddBranch(tmp_branch, kTRUE);
279  }
280  performedSwitchOver_ = false;
281  rawTriggerTreeCache_->StopLearningPhase();
282  filePtr_->SetCacheRead(nullptr);
283 
284  return rawTriggerTreeCache_.get();
286  // The raw trigger has fired and it contents are valid.
287  return rawTriggerTreeCache_.get();
288  } else if (rawTriggerSwitchOverEntry_ > 0) {
289  // The raw trigger has fired, but we are out of the cache. Use the
290  // triggerCache instead.
291  if (!performedSwitchOver_) {
292  rawTriggerTreeCache_.reset();
293  performedSwitchOver_ = true;
294 
295  // Train the triggerCache
296  tree_->SetCacheSize(static_cast<Long64_t>(5*1024*1024));
297  triggerTreeCache_.reset(dynamic_cast<TTreeCache*>(filePtr_->GetCacheRead()));
298  triggerTreeCache_->SetEnablePrefetching(false);
299  triggerTreeCache_->SetLearnEntries(0);
300  triggerTreeCache_->SetEntryRange(entryNumber, tree_->GetEntries());
301  for(std::unordered_set<TBranch*>::const_iterator it = triggerSet_.begin(), itEnd = triggerSet_.end();
302  it != itEnd;
303  it++)
304  {
305  triggerTreeCache_->AddBranch(*it, kTRUE);
306  }
307  triggerTreeCache_->StopLearningPhase();
308  filePtr_->SetCacheRead(nullptr);
309  }
310  return triggerTreeCache_.get();
311  }
312 
313  // By construction, this case should be impossible.
314  assert (false);
315  return nullptr;
316  }
317 
318  inline TTreeCache*
320  TTreeCache *triggerCache = nullptr;
321  if (!treeCache_) {
322  return nullptr;
323  } else if (treeCache_->IsLearning() && rawTreeCache_) {
324  treeCache_->AddBranch(branch, kTRUE);
325  trainedSet_.insert(branch);
326  return rawTreeCache_.get();
327  } else if ((triggerCache = checkTriggerCache(branch, entryNumber))) {
328  // A NULL return value from checkTriggerCache indicates the trigger cache case
329  // does not apply, and we should continue below.
330  return triggerCache;
331  } else {
332  // The "normal" TTreeCache case.
333  return treeCache_.get();
334  }
335  }
336 
337  void
338  RootTree::getEntry(TBranch* branch, EntryNumber entryNumber) const {
339  try {
340  TTreeCache * cache = selectCache(branch, entryNumber);
341  filePtr_->SetCacheRead(cache);
342  branch->GetEntry(entryNumber);
343  filePtr_->SetCacheRead(nullptr);
344  } catch(cms::Exception const& e) {
345  // We make sure the treeCache_ is detached from the file,
346  // so that ROOT does not also delete it.
347  filePtr_->SetCacheRead(nullptr);
349  t.addContext(std::string("Reading branch ")+branch->GetName());
350  throw t;
351  }
352  }
353 
354  bool
355  RootTree::skipEntries(unsigned int& offset) {
356  entryNumber_ += offset;
357  bool retval = (entryNumber_ < entries_);
358  if(retval) {
359  offset = 0;
360  } else {
361  // Not enough entries in the file to skip.
362  // The +1 is needed because entryNumber_ is -1 at the initialization of the tree, not 0.
363  long long overshoot = entryNumber_ + 1 - entries_;
365  offset = overshoot;
366  }
367  return retval;
368  }
369 
370  void
372  if (cacheSize_ == 0) {
373  return;
374  }
375  assert(treeCache_);
376  assert(branchType_ == InEvent);
377  assert(!rawTreeCache_);
378  treeCache_->SetLearnEntries(learningEntries_);
379  tree_->SetCacheSize(static_cast<Long64_t>(cacheSize_));
380  rawTreeCache_.reset(dynamic_cast<TTreeCache *>(filePtr_->GetCacheRead()));
381  rawTreeCache_->SetEnablePrefetching(false);
382  filePtr_->SetCacheRead(nullptr);
383  rawTreeCache_->SetLearnEntries(0);
385  rawTreeCache_->StartLearningPhase();
387  rawTreeCache_->AddBranch("*", kTRUE);
388  rawTreeCache_->StopLearningPhase();
389  treeCache_->StartLearningPhase();
390  treeCache_->SetEntryRange(switchOverEntry_, tree_->GetEntries());
391  // Make sure that 'branchListIndexes' branch exist in input file
392  if (filePtr_->Get(poolNames::branchListIndexesBranchName().c_str()) != nullptr) {
393  treeCache_->AddBranch(poolNames::branchListIndexesBranchName().c_str(), kTRUE);
394  }
395  treeCache_->AddBranch(BranchTypeToAuxiliaryBranchName(branchType_).c_str(), kTRUE);
396  trainedSet_.clear();
397  triggerSet_.clear();
398  assert(treeCache_->GetTree() == tree_);
399  }
400 
401  void
403  filePtr_->SetCacheRead(treeCache_.get());
404  treeCache_->StopLearningPhase();
405  filePtr_->SetCacheRead(nullptr);
406  rawTreeCache_.reset();
407  }
408 
409  void
411  // The TFile is about to be closed, and destructed.
412  // Just to play it safe, zero all pointers to quantities that are owned by the TFile.
414  tree_ = metaTree_ = infoTree_ = nullptr;
415  // We own the treeCache_.
416  // We make sure the treeCache_ is detached from the file,
417  // so that ROOT does not also delete it.
418  filePtr_->SetCacheRead(nullptr);
419  // We *must* delete the TTreeCache here because the TFilePrefetch object
420  // references the TFile. If TFile is closed, before the TTreeCache is
421  // deleted, the TFilePrefetch may continue to do TFile operations, causing
422  // deadlocks or exceptions.
423  treeCache_.reset();
424  rawTreeCache_.reset();
425  triggerTreeCache_.reset();
426  rawTriggerTreeCache_.reset();
427  // We give up our shared ownership of the TFile itself.
428  filePtr_.reset();
429  }
430 
431  void
433  if (cacheSize_ == 0) {
434  return;
435  }
436  tree_->LoadTree(0);
437  assert(treeCache_);
438  filePtr_->SetCacheRead(treeCache_.get());
439  treeCache_->StartLearningPhase();
440  treeCache_->SetEntryRange(0, tree_->GetEntries());
441  treeCache_->AddBranch(branchNames, kTRUE);
442  treeCache_->StopLearningPhase();
443  assert(treeCache_->GetTree() == tree_);
444  // We own the treeCache_.
445  // We make sure the treeCache_ is detached from the file,
446  // so that ROOT does not also delete it.
447  filePtr_->SetCacheRead(nullptr);
448 
449  // Must also manually add things to the trained set.
450  TObjArray *branches = tree_->GetListOfBranches();
451  int branchCount = branches->GetEntriesFast();
452  for (int i=0;i<branchCount;i++) {
453  TBranch *branch = (TBranch*)branches->UncheckedAt(i);
454  if ((branchNames[0] == '*') || (strcmp(branchNames, branch->GetName()) == 0)) {
455  trainedSet_.insert(branch);
456  }
457  }
458 
459  }
460 
461  void
462  RootTree::setSignals(signalslot::Signal<void(StreamContext const&, ModuleCallingContext const&)> const* preEventReadSource,
463  signalslot::Signal<void(StreamContext const&, ModuleCallingContext const&)> const* postEventReadSource) {
464  rootDelayedReader_->setSignals(preEventReadSource,
465  postEventReadSource);
466  }
467 
468 
469  namespace roottree {
470  Int_t
471  getEntry(TBranch* branch, EntryNumber entryNumber) {
472  Int_t n = 0;
473  try {
474  n = branch->GetEntry(entryNumber);
475  }
476  catch(cms::Exception const& e) {
477  throw Exception(errors::FileReadError, "", e);
478  }
479  return n;
480  }
481 
482  Int_t
484  Int_t n = 0;
485  try {
486  n = tree->GetEntry(entryNumber);
487  }
488  catch(cms::Exception const& e) {
489  throw Exception (errors::FileReadError, "", e);
490  }
491  return n;
492  }
493 
494  std::unique_ptr<TTreeCache>
495  trainCache(TTree* tree, InputFile& file, unsigned int cacheSize, char const* branchNames) {
496  tree->LoadTree(0);
497  tree->SetCacheSize(cacheSize);
498  std::unique_ptr<TTreeCache> treeCache(dynamic_cast<TTreeCache*>(file.GetCacheRead()));
499  if (nullptr != treeCache.get()) {
500  treeCache->StartLearningPhase();
501  treeCache->SetEntryRange(0, tree->GetEntries());
502  treeCache->AddBranch(branchNames, kTRUE);
503  treeCache->StopLearningPhase();
504  }
505  // We own the treeCache_.
506  // We make sure the treeCache_ is detached from the file,
507  // so that ROOT does not also delete it.
508  file.SetCacheRead(nullptr);
509  return treeCache;
510  }
511  }
512 }
EntryNumber entryNumber_
Definition: RootTree.h:192
size
Write out results.
std::string const & branchName() const
std::string const & BranchTypeToMetaDataTreeName(BranchType const &branchType)
Definition: BranchType.cc:107
std::string const & BranchTypeToAuxiliaryBranchName(BranchType const &branchType)
Definition: BranchType.cc:115
unsigned int learningEntries_
Definition: RootTree.h:200
InputType
Definition: InputType.h:5
static const TGPicture * info(bool iBackgroundIsBlack)
TTreeCache * checkTriggerCache(TBranch *branch, EntryNumber entryNumber) const
Definition: RootTree.cc:228
void addBranch(BranchKey const &key, BranchDescription const &prod, std::string const &oldBranchName)
Definition: RootTree.cc:136
std::shared_ptr< TTreeCache > rawTriggerTreeCache_
Definition: RootTree.h:188
void dropBranch(std::string const &oldBranchName)
Definition: RootTree.cc:155
std::vector< std::string > branchNames_
Definition: RootTree.h:194
std::vector< std::string > const & branchNames() const
Definition: RootTree.h:107
std::shared_ptr< TTreeCache > treeCache_
Definition: RootTree.h:185
TTree * tree_
Definition: RootTree.h:178
bool trainNow_
Definition: RootTree.h:196
std::shared_ptr< BranchMap > branches_
Definition: RootTree.h:195
EntryNumber rawTriggerSwitchOverEntry_
Definition: RootTree.h:198
TFileCacheRead * GetCacheRead() const
Definition: InputFile.h:47
roottree::BranchMap BranchMap
Definition: RootTree.h:71
EntryNumber const & entries() const
Definition: RootTree.h:104
void setSignals(signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)> const *preEventReadSource, signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)> const *postEventReadSource)
Definition: RootTree.cc:462
TTree * metaTree_
Definition: RootTree.h:179
std::unordered_set< TBranch * > trainedSet_
Definition: RootTree.h:189
void stopTraining()
Definition: RootTree.cc:402
TBranch * branchEntryInfoBranch_
Definition: RootTree.h:209
void setPresence(BranchDescription &prod, std::string const &oldBranchName)
Definition: RootTree.cc:128
EntryNumber entries_
Definition: RootTree.h:191
#define nullptr
bool enablePrefetching_
Definition: RootTree.h:205
void trainCache(char const *branchNames)
Definition: RootTree.cc:432
std::unique_ptr< RootDelayedReader > rootDelayedReader_
Definition: RootTree.h:207
void setTreeMaxVirtualSize(int treeMaxVirtualSize)
Definition: RootTree.cc:191
std::map< BranchKey const, BranchInfo > BranchMap
Definition: RootTree.h:63
BranchType
Definition: BranchType.h:11
void insertEntryForIndex(unsigned int index)
Definition: RootTree.cc:99
DelayedReader * resetAndGetRootDelayedReader() const
Definition: RootTree.cc:117
T const & get(Event const &event, InputTag const &tag)
Definition: Event.h:630
TTreeCache * selectCache(TBranch *branch, EntryNumber entryNumber) const
Definition: RootTree.cc:319
unsigned long treeAutoFlush_
Definition: RootTree.h:202
std::string const & BranchTypeToBranchEntryInfoBranchName(BranchType const &branchType)
Definition: BranchType.cc:127
void setDropped(bool isDropped)
std::string const & BranchTypeToProductTreeName(BranchType const &branchType)
Definition: BranchType.cc:103
IndexIntoFile::EntryNumber_t EntryNumber
Definition: RootTree.h:49
TTreeCache * checkTriggerCacheImpl(TBranch *branch, EntryNumber entryNumber) const
Definition: RootTree.cc:239
TBranch * auxBranch_
Definition: RootTree.h:181
def cache(function)
EntryNumber const & entryNumber() const
Definition: RootTree.h:102
std::string const & BranchTypeToInfoTreeName(BranchType const &branchType)
Definition: BranchType.cc:111
TBranch * provenanceBranch_
Definition: RootTree.h:59
bool enableTriggerCache_
Definition: RootTree.h:206
DelayedReader * rootDelayedReader() const
Definition: RootTree.cc:123
EntryNumber const & entryNumberForIndex(unsigned int index) const
Definition: RootTree.cc:93
std::shared_ptr< TTreeCache > rawTreeCache_
Definition: RootTree.h:186
void close()
Definition: RootTree.cc:410
void getEntry(TBranch *branch, EntryNumber entry) const
Definition: RootTree.cc:338
void startTraining()
Definition: RootTree.cc:371
void addContext(std::string const &context)
Definition: Exception.cc:227
bool isValid() const
Definition: RootTree.cc:105
std::shared_ptr< InputFile > filePtr_
Definition: RootTree.h:174
TBranch * productBranch_
Definition: RootTree.h:58
void setCacheSize(unsigned int cacheSize)
Definition: RootTree.cc:181
bool performedSwitchOver_
Definition: RootTree.h:199
std::unique_ptr< std::vector< EntryNumber > > entryNumberForIndex_
Definition: RootTree.h:193
HLT enums.
unsigned int cacheSize_
Definition: RootTree.h:201
bool skipEntries(unsigned int &offset)
Definition: RootTree.cc:355
std::unordered_set< TBranch * > triggerSet_
Definition: RootTree.h:190
RootTree(std::shared_ptr< InputFile > filePtr, BranchType const &branchType, unsigned int nIndexes, unsigned int maxVirtualSize, unsigned int cacheSize, unsigned int learningEntries, bool enablePrefetching, InputType inputType)
Definition: RootTree.cc:28
std::string const & BranchTypeToAuxBranchName(BranchType const &branchType)
Definition: BranchType.cc:119
BranchMap const & branches() const
Definition: RootTree.cc:178
std::string const & branchListIndexesBranchName()
Definition: BranchType.cc:247
Definition: tree.py:1
void SetCacheRead(TFileCacheRead *tfcr)
Definition: InputFile.h:48
EntryNumber switchOverEntry_
Definition: RootTree.h:197
std::shared_ptr< TTreeCache > triggerTreeCache_
Definition: RootTree.h:187
def branchType(schema, name)
Definition: revisionDML.py:112
BranchType branchType_
Definition: RootTree.h:180
TTree * infoTree_
Definition: RootTree.h:211
void setEntryNumber(EntryNumber theEntryNumber)
Definition: RootTree.cc:196
roottree::EntryNumber EntryNumber
Definition: RootTree.h:72