Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAbsDataStore.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_ABS_DATA_STORE
17#define ROO_ABS_DATA_STORE
18
19#include "Rtypes.h"
20#include "RooArgSet.h"
21#include "RooAbsData.h"
22#include "TNamed.h"
23#include <list>
24#include <vector>
25
26class RooAbsArg ;
27class RooArgList ;
28class TIterator ;
29class TTree ;
30namespace RooBatchCompute {
31struct RunContext;
32}
33
34class RooAbsDataStore : public TNamed, public RooPrintable {
35public:
36
38 RooAbsDataStore(const char* name, const char* title, const RooArgSet& vars) ;
39 RooAbsDataStore(const RooAbsDataStore& other, const char* newname=0) ;
40 RooAbsDataStore(const RooAbsDataStore& other, const RooArgSet& vars, const char* newname=0) ;
41 virtual RooAbsDataStore* clone(const char* newname=0) const = 0 ;
42 virtual RooAbsDataStore* clone(const RooArgSet& vars, const char* newname=0) const = 0 ;
43 virtual ~RooAbsDataStore() ;
44
45 // Write current row
46 virtual Int_t fill() = 0 ;
47
48 // Retrieve a row
49 virtual const RooArgSet* get(Int_t index) const = 0 ;
50 virtual const RooArgSet* get() const { return &_vars ; }
51 virtual Double_t weight() const = 0 ;
52
55
56 virtual Double_t weight(Int_t index) const = 0 ;
57 virtual Bool_t isWeighted() const = 0 ;
58
59 /// Retrieve batches for all observables in this data store.
60 virtual RooBatchCompute::RunContext getBatches(std::size_t first, std::size_t len) const = 0;
61 virtual RooSpan<const double> getWeightBatch(std::size_t first, std::size_t len) const = 0;
62
63 // Change observable name
64 virtual Bool_t changeObservableName(const char* from, const char* to) =0 ;
65
66 // Add one or more columns
67 virtual RooAbsArg* addColumn(RooAbsArg& var, Bool_t adjustRange=kTRUE) = 0 ;
68 virtual RooArgSet* addColumns(const RooArgList& varList) = 0 ;
69
70 // Merge column-wise
71 virtual RooAbsDataStore* merge(const RooArgSet& allvars, std::list<RooAbsDataStore*> dstoreList) = 0 ;
72
73 // Add rows
74 virtual void append(RooAbsDataStore& other)= 0 ;
75
76 // General & bookkeeping methods
77 virtual Bool_t valid() const = 0 ;
78 virtual Int_t numEntries() const = 0 ;
79 virtual Double_t sumEntries() const { return 0 ; } ;
80 virtual void reset() = 0 ;
81
82 // Buffer redirection routines used in inside RooAbsOptTestStatistics
83 virtual void attachBuffers(const RooArgSet& extObs) = 0 ;
84 virtual void resetBuffers() = 0 ;
85
86 virtual void setExternalWeightArray(const Double_t* /*arrayWgt*/, const Double_t* /*arrayWgtErrLo*/, const Double_t* /*arrayWgtErrHi*/, const Double_t* /*arraySumW2*/) {} ;
87
88 // Printing interface (human readable)
89 inline virtual void Print(Option_t *options= 0) const {
90 // Print contents on stdout
92 }
93
94 virtual void printName(std::ostream& os) const ;
95 virtual void printTitle(std::ostream& os) const ;
96 virtual void printClassName(std::ostream& os) const ;
97 virtual void printArgs(std::ostream& os) const ;
98 virtual void printValue(std::ostream& os) const ;
99 void printMultiline(std::ostream& os, Int_t content, Bool_t verbose, TString indent) const ;
100
101 virtual Int_t defaultPrintContents(Option_t* opt) const ;
102
103
104 // Constant term optimizer interface
105 virtual void cacheArgs(const RooAbsArg* cacheOwner, RooArgSet& varSet, const RooArgSet* nset=0, Bool_t skipZeroWeights=kFALSE) = 0 ;
106 virtual const RooAbsArg* cacheOwner() = 0 ;
107 virtual void attachCache(const RooAbsArg* newOwner, const RooArgSet& cachedVars) = 0 ;
108 virtual void setArgStatus(const RooArgSet& set, Bool_t active) = 0 ;
109 const RooArgSet& cachedVars() const { return _cachedVars ; }
110 virtual void resetCache() = 0 ;
111 virtual void recalculateCache(const RooArgSet* /*proj*/, Int_t /*firstEvent*/, Int_t /*lastEvent*/, Int_t /*stepSize*/, Bool_t /* skipZeroWeights*/) {} ;
112
113 virtual void setDirtyProp(Bool_t flag) { _doDirtyProp = flag ; }
114 Bool_t dirtyProp() const { return _doDirtyProp ; }
115
116 virtual void checkInit() const {} ;
117
118 virtual Bool_t hasFilledCache() const { return kFALSE ; }
119
120 virtual const TTree* tree() const { return 0 ; }
121 virtual void dump() {}
122
123 virtual void loadValues(const RooAbsDataStore *tds, const RooFormulaVar* select=0, const char* rangeName=0,
124 std::size_t nStart=0, std::size_t nStop = std::numeric_limits<std::size_t>::max()) = 0 ;
125
126 virtual void forceCacheUpdate() {} ;
127
128 protected:
129
132
133 Bool_t _doDirtyProp ; // Switch do (de)activate dirty state propagation when loading a data point
134
135 ClassDef(RooAbsDataStore,1) // Abstract Data Storage class
136};
137
138
139#endif
const Bool_t kFALSE
Definition RtypesCore.h:92
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:91
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
static void indent(ostringstream &buf, int indent_level)
char name[80]
Definition TGX11.cxx:110
#define hi
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...
virtual void reset()=0
virtual const RooAbsArg * cacheOwner()=0
virtual RooSpan< const double > getWeightBatch(std::size_t first, std::size_t len) const =0
virtual void attachBuffers(const RooArgSet &extObs)=0
virtual Bool_t hasFilledCache() const
virtual void printName(std::ostream &os) const
Print name of dataset.
const RooArgSet & cachedVars() const
virtual void append(RooAbsDataStore &other)=0
virtual Bool_t changeObservableName(const char *from, const char *to)=0
virtual const RooArgSet * get(Int_t index) const =0
virtual void resetBuffers()=0
virtual void setExternalWeightArray(const Double_t *, const Double_t *, const Double_t *, const Double_t *)
RooAbsDataStore()
Default constructor.
virtual Double_t weight(Int_t index) const =0
virtual const TTree * tree() const
virtual RooAbsDataStore * clone(const RooArgSet &vars, const char *newname=0) const =0
virtual Double_t sumEntries() const
virtual void weightError(Double_t &lo, Double_t &hi, RooAbsData::ErrorType etype=RooAbsData::Poisson) const =0
Bool_t dirtyProp() const
virtual void cacheArgs(const RooAbsArg *cacheOwner, RooArgSet &varSet, const RooArgSet *nset=0, Bool_t skipZeroWeights=kFALSE)=0
virtual RooBatchCompute::RunContext getBatches(std::size_t first, std::size_t len) const =0
Retrieve batches for all observables in this data store.
void printMultiline(std::ostream &os, Int_t content, Bool_t verbose, TString indent) const
Detailed printing interface.
virtual void checkInit() const
virtual Int_t fill()=0
virtual void loadValues(const RooAbsDataStore *tds, const RooFormulaVar *select=0, const char *rangeName=0, std::size_t nStart=0, std::size_t nStop=std::numeric_limits< std::size_t >::max())=0
virtual Double_t weight() const =0
virtual void Print(Option_t *options=0) const
Print TNamed name and title.
virtual void printClassName(std::ostream &os) const
Print class name of dataset.
virtual Double_t weightError(RooAbsData::ErrorType etype=RooAbsData::Poisson) const =0
virtual RooAbsDataStore * clone(const char *newname=0) const =0
virtual RooAbsDataStore * merge(const RooArgSet &allvars, std::list< RooAbsDataStore * > dstoreList)=0
virtual void setDirtyProp(Bool_t flag)
virtual void printTitle(std::ostream &os) const
Print title of dataset.
virtual void printArgs(std::ostream &os) const
Print argument of dataset, i.e. the observable names.
virtual void resetCache()=0
virtual RooArgSet * addColumns(const RooArgList &varList)=0
virtual void recalculateCache(const RooArgSet *, Int_t, Int_t, Int_t, Bool_t)
virtual void forceCacheUpdate()
virtual Int_t defaultPrintContents(Option_t *opt) const
Define default print options, for a given print style.
virtual Bool_t valid() const =0
Return true if currently loaded coordinate is considered valid within the current range definitions o...
virtual void attachCache(const RooAbsArg *newOwner, const RooArgSet &cachedVars)=0
virtual Bool_t isWeighted() const =0
virtual ~RooAbsDataStore()
Destructor.
virtual void setArgStatus(const RooArgSet &set, Bool_t active)=0
virtual void dump()
virtual Int_t numEntries() const =0
virtual const RooArgSet * get() const
virtual void printValue(std::ostream &os) const
Print value of the dataset, i.e. the sum of weights contained in the dataset.
virtual RooAbsArg * addColumn(RooAbsArg &var, Bool_t adjustRange=kTRUE)=0
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...
RooPlotable is a 'mix-in' base class that define the standard RooFit plotting and printing methods.
virtual StyleOption defaultPrintStyle(Option_t *opt) const
static std::ostream & defaultPrintStream(std::ostream *os=0)
Return a reference to the current default stream to use in Print().
virtual void printStream(std::ostream &os, Int_t contents, StyleOption style, TString indent="") const
Print description of object on ostream, printing contents set by contents integer,...
A simple container to hold a batch of data values.
Definition RooSpan.h:34
Iterator abstract base class.
Definition TIterator.h:30
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Basic string class.
Definition TString.h:136
A TTree represents a columnar dataset.
Definition TTree.h:79
Namespace for dispatching RooFit computations to various backends.
Definition first.py:1
This struct enables passing computation data around between elements of a computation graph.
Definition RunContext.h:31