Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooTreeDataStore.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_TREE_DATA_STORE
17#define ROO_TREE_DATA_STORE
18
19#include "RooAbsDataStore.h"
20#include "RunContext.h"
21#include <vector>
22#include <list>
23#include <string>
24
25class RooAbsArg ;
26class RooArgList ;
27class TTree ;
28class RooFormulaVar ;
29class RooArgSet ;
30
31
33public:
34
36 RooTreeDataStore(TTree* t, const RooArgSet& vars, const char* wgtVarName=0) ;
37
38 // Empty ctor
39 RooTreeDataStore(const char* name, const char* title, const RooArgSet& vars, const char* wgtVarName=0) ;
40 virtual RooAbsDataStore* clone(const char* newname=0) const { return new RooTreeDataStore(*this,newname) ; }
41 virtual RooAbsDataStore* clone(const RooArgSet& vars, const char* newname=0) const { return new RooTreeDataStore(*this,vars,newname) ; }
42
43 // Ctors from TTree
44 RooTreeDataStore(const char* name, const char* title, const RooArgSet& vars, TTree& t, const RooFormulaVar& select, const char* wgtVarName=0) ;
45 RooTreeDataStore(const char* name, const char* title, const RooArgSet& vars, TTree& t, const char* selExpr=0, const char* wgtVarName=0) ;
46
47 // Ctors from DataStore
48 RooTreeDataStore(const char* name, const char* title, const RooArgSet& vars, const RooAbsDataStore& tds, const RooFormulaVar& select, const char* wgtVarName=0) ;
49 RooTreeDataStore(const char* name, const char* title, const RooArgSet& vars, const RooAbsDataStore& tds, const char* selExpr=0, const char* wgtVarName=0) ;
50
51 RooTreeDataStore(const char *name, const char *title, RooAbsDataStore& tds,
52 const RooArgSet& vars, const RooFormulaVar* cutVar, const char* cutRange,
53 Int_t nStart, Int_t nStop, Bool_t /*copyCache*/, const char* wgtVarName=0) ;
54
55 RooTreeDataStore(const RooTreeDataStore& other, const char* newname=0) ;
56 RooTreeDataStore(const RooTreeDataStore& other, const RooArgSet& vars, const char* newname=0) ;
57 virtual ~RooTreeDataStore() ;
58
59
60 // Write current row
61 virtual Int_t fill() ;
62
63 // Retrieve a row
65 virtual const RooArgSet* get(Int_t index) const ;
66 virtual Double_t weight() const ;
69 virtual Double_t weight(Int_t index) const ;
70 virtual Bool_t isWeighted() const { return (_wgtVar!=0||_extWgtArray!=0) ; }
71
72 virtual RooBatchCompute::RunContext getBatches(std::size_t first, std::size_t len) const {
73 //TODO
74 std::cerr << "This functionality is not yet implemented for tree data stores." << std::endl;
75 throw std::logic_error("getBatches() not implemented in RooTreeDataStore.");
76 (void)first; (void)len;
77 return {};
78 }
79 virtual RooSpan<const double> getWeightBatch(std::size_t first, std::size_t len) const;
80
81 // Change observable name
82 virtual Bool_t changeObservableName(const char* from, const char* to) ;
83
84 // Add one or more columns
85 virtual RooAbsArg* addColumn(RooAbsArg& var, Bool_t adjustRange=kTRUE) ;
86 virtual RooArgSet* addColumns(const RooArgList& varList) ;
87
88 // Merge column-wise
89 RooAbsDataStore* merge(const RooArgSet& allvars, std::list<RooAbsDataStore*> dstoreList) ;
90
91 // Add rows
92 virtual void append(RooAbsDataStore& other) ;
93
94 // General & bookkeeping methods
95 virtual Bool_t valid() const ;
96 virtual Double_t sumEntries() const ;
97 virtual Int_t numEntries() const ;
98 virtual void reset() ;
99
100 // Buffer redirection routines used in inside RooAbsOptTestStatistics
101 virtual void attachBuffers(const RooArgSet& extObs) ;
102 virtual void resetBuffers() ;
104
105 // Tree access
106 TTree& tree() { return *_tree ; }
107 virtual const TTree* tree() const { return _tree ; }
108
109 // Forwarded from TTree
110 Stat_t GetEntries() const;
111 void Reset(Option_t* option=0);
112 Int_t Fill();
113 Int_t GetEntry(Int_t entry = 0, Int_t getall = 0);
114
115 void Draw(Option_t* option = "") ;
116
117 // Constant term optimizer interface
118 virtual void cacheArgs(const RooAbsArg* owner, RooArgSet& varSet, const RooArgSet* nset=0, Bool_t skipZeroWeights=kFALSE) ;
119 virtual const RooAbsArg* cacheOwner() { return _cacheOwner ; }
120 virtual void setArgStatus(const RooArgSet& set, Bool_t active) ;
121 virtual void resetCache() ;
122
123 void loadValues(const TTree *t, const RooFormulaVar* select=0, const char* rangeName=0, Int_t nStart=0, Int_t nStop=2000000000) ;
124 void loadValues(const RooAbsDataStore *tds, const RooFormulaVar* select=0, const char* rangeName=0,
125 std::size_t nStart=0, std::size_t nStop = std::numeric_limits<std::size_t>::max());
126
127 virtual void checkInit() const;
128
129 void setExternalWeightArray(const Double_t* arrayWgt, const Double_t* arrayWgtErrLo,
130 const Double_t* arrayWgtErrHi, const Double_t* arraySumW2) {
131 _extWgtArray = arrayWgt ;
132 _extWgtErrLoArray = arrayWgtErrLo ;
133 _extWgtErrHiArray = arrayWgtErrHi ;
134 _extSumW2Array = arraySumW2 ;
135 }
136
137 const RooArgSet& row() { return _varsww ; }
138
139 private:
140
141 friend class RooVectorDataStore ;
142
143 RooArgSet varsNoWeight(const RooArgSet& allVars, const char* wgtName=0) ;
144 RooRealVar* weightVar(const RooArgSet& allVars, const char* wgtName=0) ;
145
146 void initialize();
147 void attachCache(const RooAbsArg* newOwner, const RooArgSet& cachedVars) ;
148
149 // TTree Branch buffer size control
152
153 std::string makeTreeName() const;
154
156
157 void createTree(const char* name, const char* title) ;
158 TTree *_tree ; // TTree holding the data points
159 TTree *_cacheTree ; //! TTree holding the cached function values
160 const RooAbsArg* _cacheOwner ; //! Object owning cache contents
161 mutable Bool_t _defCtor ;//! Was object constructed with default ctor?
162
164 RooRealVar* _wgtVar ; // Pointer to weight variable (if set)
165
166 const Double_t* _extWgtArray{nullptr}; //! External weight array
167 const Double_t* _extWgtErrLoArray{nullptr}; //! External weight array - low error
168 const Double_t* _extWgtErrHiArray{nullptr}; //! External weight array - high error
169 const Double_t* _extSumW2Array{nullptr}; //! External sum of weights array
170 mutable std::unique_ptr<std::vector<double>> _weightBuffer; //! Buffer for weights in case a batch of values is requested.
171
172 mutable Double_t _curWgt ; // Weight of current event
173 mutable Double_t _curWgtErrLo ; // Weight of current event
174 mutable Double_t _curWgtErrHi ; // Weight of current event
175 mutable Double_t _curWgtErr ; // Weight of current event
176
177 RooArgSet _attachedBuffers ; //! Currently attached buffers (if different from _varsww)
178
179 ClassDef(RooTreeDataStore, 2) // TTree-based Data Storage class
180};
181
182
183#endif
const Bool_t kFALSE
Definition RtypesCore.h:92
double Double_t
Definition RtypesCore.h:59
double Stat_t
Definition RtypesCore.h:77
const Bool_t kTRUE
Definition RtypesCore.h:91
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
char name[80]
Definition TGX11.cxx:110
#define hi
typedef void((*Func_t)())
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:72
RooAbsDataStore is the abstract base class for data collection that use a TTree as internal storage m...
const RooArgSet & cachedVars() const
virtual const RooArgSet * get() const
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:21
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:29
A RooFormulaVar is a generic implementation of a real-valued object, which takes a RooArgList of serv...
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
A simple container to hold a batch of data values.
Definition RooSpan.h:34
RooTreeDataStore is a TTree-backed data storage.
const Double_t * _extSumW2Array
External weight array - high error.
const Double_t * _extWgtArray
virtual Double_t weight() const
Return the weight of the n-th data point (n='index') in memory.
void initialize()
One-time initialization common to all constructor forms.
virtual void append(RooAbsDataStore &other)
RooArgSet varsNoWeight(const RooArgSet &allVars, const char *wgtName=0)
Utility function for constructors Return RooArgSet that is copy of allVars minus variable matching wg...
virtual Bool_t changeObservableName(const char *from, const char *to)
Change name of internal observable named 'from' into 'to'.
virtual void cacheArgs(const RooAbsArg *owner, RooArgSet &varSet, const RooArgSet *nset=0, Bool_t skipZeroWeights=kFALSE)
Cache given RooAbsArgs with this tree: The tree is given direct write access of the args internal cac...
virtual Bool_t valid() const
Return true if currently loaded coordinate is considered valid within the current range definitions o...
virtual void attachBuffers(const RooArgSet &extObs)
std::string makeTreeName() const
Generate a name for the storage tree from the name and title of this instance.
virtual const TTree * tree() const
virtual Bool_t isWeighted() const
RooRealVar * weightVar(const RooArgSet &allVars, const char *wgtName=0)
Utility function for constructors Return pointer to weight variable if it is defined.
void setBranchBufferSize(Int_t size)
const Double_t * _extWgtErrLoArray
External weight array.
virtual Int_t fill()
Interface function to TTree::Fill.
Stat_t GetEntries() const
Interface function to TTree::GetEntries.
void createTree(const char *name, const char *title)
Create TTree object that lives in memory, independent of current location of gDirectory.
virtual RooAbsDataStore * clone(const RooArgSet &vars, const char *newname=0) const
Int_t GetEntry(Int_t entry=0, Int_t getall=0)
Interface function to TTree::GetEntry.
Double_t _curWgt
Buffer for weights in case a batch of values is requested.
void setExternalWeightArray(const Double_t *arrayWgt, const Double_t *arrayWgtErrLo, const Double_t *arrayWgtErrHi, const Double_t *arraySumW2)
virtual RooBatchCompute::RunContext getBatches(std::size_t first, std::size_t len) const
Retrieve batches for all observables in this data store.
virtual void checkInit() const
static Int_t _defTreeBufSize
void loadValues(const TTree *t, const RooFormulaVar *select=0, const char *rangeName=0, Int_t nStart=0, Int_t nStop=2000000000)
Load values from tree 't' into this data collection, optionally selecting events using the RooFormula...
const Double_t * _extWgtErrHiArray
External weight array - low error.
void attachCache(const RooAbsArg *newOwner, const RooArgSet &cachedVars)
Initialize cache of dataset: attach variables of cache ArgSet to the corresponding TTree branches.
virtual void resetCache()
Remove tree with values of cached observables and clear list of cached observables.
Bool_t _defCtor
Object owning cache contents.
virtual RooAbsDataStore * clone(const char *newname=0) const
Int_t getBranchBufferSize() const
virtual Double_t weightError(RooAbsData::ErrorType etype=RooAbsData::Poisson) const
RooAbsDataStore * merge(const RooArgSet &allvars, std::list< RooAbsDataStore * > dstoreList)
Merge columns of supplied data set(s) with this data set.
virtual const RooAbsArg * cacheOwner()
virtual void resetBuffers()
virtual RooAbsArg * addColumn(RooAbsArg &var, Bool_t adjustRange=kTRUE)
Add a new column to the data set which holds the pre-calculated values of 'newVar'.
virtual RooArgSet * addColumns(const RooArgList &varList)
Utility function to add multiple columns in one call See addColumn() for details.
std::unique_ptr< std::vector< double > > _weightBuffer
External sum of weights array.
Int_t Fill()
Interface function to TTree::Fill.
virtual ~RooTreeDataStore()
Destructor.
void Reset(Option_t *option=0)
Interface function to TTree::Reset.
virtual Double_t sumEntries() const
virtual RooSpan< const double > getWeightBatch(std::size_t first, std::size_t len) const
Get the weights of the events in the range [first, first+len).
virtual const RooArgSet * get() const
const RooAbsArg * _cacheOwner
TTree holding the cached function values.
RooArgSet _varsww
Was object constructed with default ctor?
virtual Int_t numEntries() const
virtual void setArgStatus(const RooArgSet &set, Bool_t active)
Activate or deactivate the branch status of the TTree branch associated with the given set of dataset...
const RooArgSet & row()
RooVectorDataStore uses std::vectors to store data columns.
A TTree represents a columnar dataset.
Definition TTree.h:79
Definition first.py:1
This struct enables passing computation data around between elements of a computation graph.
Definition RunContext.h:31
th1 Draw()