Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
RooDataSet.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooDataSet.h,v 1.59 2007/05/11 09:11:30 verkerke Exp $
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_DATA_SET
17#define ROO_DATA_SET
18
20class RooCategory;
21class RooDataHist;
22class RooRealVar;
23
24class TDirectory;
25
26#include "RooAbsData.h"
27#include "RooDirItem.h"
28
29#include <ROOT/RConfig.hxx> // for R__DEPRECATED
30
31#include <list>
32#include <string_view>
33
34class RooDataSet : public RooAbsData, public RooDirItem {
35public:
36
37 // Constructors, factory methods etc.
38 RooDataSet() ;
39
40 // Universal constructor
41 RooDataSet(RooStringView name, RooStringView title, const RooArgSet& vars, const RooCmdArg& arg1={}, const RooCmdArg& arg2={},
42 const RooCmdArg& arg3={}, const RooCmdArg& arg4={},const RooCmdArg& arg5={},
43 const RooCmdArg& arg6={},const RooCmdArg& arg7={},const RooCmdArg& arg8={}) ;
44
45 // Constructor for subset of existing dataset
47 const char *cuts=nullptr, const char* wgtVarName=nullptr)
48#ifndef ROOFIT_BUILDS_ITSELF
49 R__DEPRECATED(6,38, "Use RooAbsData::reduce(), or if you need to change the weight column, the universal constructor with the Import(), Cut(), and WeightVar() arguments.")
50#endif
51 ;
53 const RooFormulaVar& cutVar, const char* wgtVarName=nullptr)
55
56 RooDataSet(RooDataSet const & other, const char* newname=nullptr) ;
57 TObject* Clone(const char* newname = "") const override {
58 return new RooDataSet(*this, newname && newname[0] != '\0' ? newname : GetName());
59 }
60 ~RooDataSet() override ;
61
62 RooFit::OwningPtr<RooAbsData> emptyClone(const char* newName=nullptr, const char* newTitle=nullptr, const RooArgSet* vars=nullptr, const char* wgtVarName=nullptr) const override;
63
64 RooFit::OwningPtr<RooDataHist> binnedClone(const char* newName=nullptr, const char* newTitle=nullptr) const ;
65
66 double sumEntries() const override;
67 double sumEntries(const char* cutSpec, const char* cutRange=nullptr) const override;
68
69 virtual RooPlot* plotOnXY(RooPlot* frame,
70 const RooCmdArg& arg1={}, const RooCmdArg& arg2={},
71 const RooCmdArg& arg3={}, const RooCmdArg& arg4={},
72 const RooCmdArg& arg5={}, const RooCmdArg& arg6={},
73 const RooCmdArg& arg7={}, const RooCmdArg& arg8={}) const ;
74
75
76 /// Read data from a text file and create a dataset from it.
77 /// The possible options are: (D)ebug, (Q)uiet.
78 static RooDataSet *read(const char *filename, const RooArgList &variables,
79 const char *opts= "", const char* commonPath="",
80 const char *indexCatName=nullptr) ;
81 bool write(const char* filename) const;
82 bool write(std::ostream & ofs) const;
83
84
85 bool isWeighted() const override;
86 bool isNonPoissonWeighted() const override;
87
88 double weight() const override;
89 /// Returns a pointer to the weight variable (if set).
90 RooRealVar* weightVar() const { return _wgtVar; }
91 double weightSquared() const override;
92 void weightError(double& lo, double& hi,ErrorType etype=SumW2) const override;
93 double weightError(ErrorType etype=SumW2) const override;
94
95 const RooArgSet* get(Int_t index) const override;
96 const RooArgSet* get() const override;
97
98 std::span<const double> getWeightBatch(std::size_t first, std::size_t len, bool sumW2) const override;
99
100 /// Add one ore more rows of data
101 void add(const RooArgSet& row, double weight, double weightError);
102 void add(const RooArgSet& row, double weight=1.0) override { add(row, weight, 0.0); }
103 virtual void add(const RooArgSet& row, double weight, double weightErrorLo, double weightErrorHi);
104
105 virtual void addFast(const RooArgSet& row, double weight=1.0, double weightError=0.0);
106
107 void append(RooDataSet& data) ;
108 bool merge(RooDataSet* data1, RooDataSet* data2=nullptr, RooDataSet* data3=nullptr,
109 RooDataSet* data4=nullptr, RooDataSet* data5=nullptr, RooDataSet* data6=nullptr) ;
110 bool merge(std::list<RooDataSet*> dsetList) ;
111
112 virtual RooAbsArg* addColumn(RooAbsArg& var, bool adjustRange=true) ;
113
114 void printMultiline(std::ostream& os, Int_t contents, bool verbose=false, TString indent="") const override;
115 void printArgs(std::ostream& os) const override;
116 void printValue(std::ostream& os) const override;
117
118 void SetName(const char *name) override;
119 void SetNameTitle(const char *name, const char* title) override;
120
121 static void cleanup();
122
123 void convertToTreeStore() override;
124
125protected:
126
127 friend class RooProdGenContext ;
128
129 void initialize(const char* wgtVarName) ;
130
131 // Cache copy feature is not publicly accessible
132 std::unique_ptr<RooAbsData> reduceEng(const RooArgSet& varSubset, const RooFormulaVar* cutVar, const char* cutRange=nullptr,
133 std::size_t nStart=0, std::size_t nStop = std::numeric_limits<std::size_t>::max()) const override;
134
135 RooArgSet _varsNoWgt; ///< Vars without weight variable
136 RooRealVar *_wgtVar = nullptr; ///< Pointer to weight variable (if set)
137
138private:
139
140 void loadValuesFromSlices(RooCategory &indexCat, std::map<std::string, RooAbsData *> const &slices,
141 const char *rangeName, RooFormulaVar const *cutVar, const char *cutSpec);
142
143 unsigned short _errorMsgCount{0}; ///<! Counter to silence error messages when filling dataset.
144 bool _doWeightErrorCheck{true}; ///<! When adding events with weights, check that weights can actually be stored.
145
146 mutable std::unique_ptr<std::vector<double>> _sumW2Buffer; ///<! Buffer for sumW2 in case a batch of values is requested.
147
148 ClassDefOverride(RooDataSet,2) // Unbinned data set
149};
150
151#endif
#define R__DEPRECATED(MAJOR, MINOR, REASON)
Definition RConfig.hxx:520
#define ClassDefOverride(name, id)
Definition Rtypes.h:346
static void indent(ostringstream &buf, int indent_level)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
char name[80]
Definition TGX11.cxx:110
#define hi
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:77
Abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:57
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:24
Object to represent discrete states.
Definition RooCategory.h:28
Named container for two doubles, two integers two object points and three string pointers that can be...
Definition RooCmdArg.h:26
Container class to hold N-dimensional binned data.
Definition RooDataHist.h:40
Container class to hold unbinned data.
Definition RooDataSet.h:34
RooFit::OwningPtr< RooAbsData > emptyClone(const char *newName=nullptr, const char *newTitle=nullptr, const RooArgSet *vars=nullptr, const char *wgtVarName=nullptr) const override
Return an empty clone of this dataset.
TObject * Clone(const char *newname="") const override
Make a clone of an object using the Streamer facility.
Definition RooDataSet.h:57
RooRealVar * _wgtVar
Pointer to weight variable (if set)
Definition RooDataSet.h:136
bool _doWeightErrorCheck
! When adding events with weights, check that weights can actually be stored.
Definition RooDataSet.h:144
static void cleanup()
RooArgSet _varsNoWgt
Vars without weight variable.
Definition RooDataSet.h:135
Use or if you need to change the weight column
Definition RooDataSet.h:49
void loadValuesFromSlices(RooCategory &indexCat, std::map< std::string, RooAbsData * > const &slices, const char *rangeName, RooFormulaVar const *cutVar, const char *cutSpec)
RooFit::OwningPtr< RooDataHist > binnedClone(const char *newName=nullptr, const char *newTitle=nullptr) const
Return binned clone of this dataset.
void weightError(double &lo, double &hi, ErrorType etype=SumW2) const override
Return the asymmetric errors on the current weight.
const RooArgSet * get() const override
Return a RooArgSet with the coordinates of the current event.
virtual RooPlot * plotOnXY(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Special plot method for 'X-Y' datasets used in fitting.
void initialize(const char *wgtVarName)
Initialize the dataset.
void printArgs(std::ostream &os) const override
Print argument of dataset, i.e. the observable names.
void SetName(const char *name) override
Change the name of this dataset into the given name.
virtual void addFast(const RooArgSet &row, double weight=1.0, double weightError=0.0)
Add a data point, with its coordinates specified in the 'data' argset, to the data set.
bool merge(RooDataSet *data1, RooDataSet *data2=nullptr, RooDataSet *data3=nullptr, RooDataSet *data4=nullptr, RooDataSet *data5=nullptr, RooDataSet *data6=nullptr)
virtual RooAbsArg * addColumn(RooAbsArg &var, bool adjustRange=true)
Add a column with the values of the given (function) argument to this dataset.
bool write(const char *filename) const
Write the contents of this dataset to an ASCII file with the specified name.
double sumEntries() const override
Return effective number of entries in dataset, i.e., sum all weights.
std::span< const double > getWeightBatch(std::size_t first, std::size_t len, bool sumW2) const override
RooRealVar * weightVar() const
Returns a pointer to the weight variable (if set).
Definition RooDataSet.h:90
~RooDataSet() override
Destructor.
bool isNonPoissonWeighted() const override
Returns true if histogram contains bins with entries with a non-integer weight.
void SetNameTitle(const char *name, const char *title) override
Change the title of this dataset into the given name.
void printValue(std::ostream &os) const override
Print value of the dataset, i.e. the sum of weights contained in the dataset.
Use RooAbsData::reduce()
Use or if you need to change the weight the universal constructor with the Cut()
void append(RooDataSet &data)
Add all data points of given data set to this data set.
RooDataSet()
Default constructor for persistence.
std::unique_ptr< std::vector< double > > _sumW2Buffer
! Buffer for sumW2 in case a batch of values is requested.
Definition RooDataSet.h:146
void add(const RooArgSet &row, double weight, double weightError)
Add one ore more rows of data.
unsigned short _errorMsgCount
! Counter to silence error messages when filling dataset.
Definition RooDataSet.h:143
std::unique_ptr< RooAbsData > reduceEng(const RooArgSet &varSubset, const RooFormulaVar *cutVar, const char *cutRange=nullptr, std::size_t nStart=0, std::size_t nStop=std::numeric_limits< std::size_t >::max()) const override
Implementation of RooAbsData virtual method that drives the RooAbsData::reduce() methods.
Use or if you need to change the weight the universal constructor with the Import()
void convertToTreeStore() override
Convert vector-based storage to tree-based storage.
Use or if you need to change the weight the universal constructor with the and WeightVar() arguments.")
void add(const RooArgSet &row, double weight=1.0) override
Definition RooDataSet.h:102
void printMultiline(std::ostream &os, Int_t contents, bool verbose=false, TString indent="") const override
Print info about this dataset to the specified output stream.
double weightSquared() const override
Return squared event weight of the current event.
double weight() const override
Return event weight of current event.
static RooDataSet * read(const char *filename, const RooArgList &variables, const char *opts="", const char *commonPath="", const char *indexCatName=nullptr)
Read data from a text file and create a dataset from it.
bool isWeighted() const override
Return true if dataset contains weighted events.
Utility base class for RooFit objects that are to be attached to ROOT directories.
Definition RooDirItem.h:22
A RooFormulaVar is a generic implementation of a real-valued object, which takes a RooArgList of serv...
Plot frame and a container for graphics objects within that frame.
Definition RooPlot.h:43
Efficient implementation of the generator context specific for RooProdPdf PDFs.
Variable that can be changed from the outside.
Definition RooRealVar.h:37
The RooStringView is a wrapper around a C-style string that can also be constructed from a std::strin...
Describe directory structure in memory.
Definition TDirectory.h:45
const char * GetName() const override
Returns name of object.
Definition TNamed.h:49
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:139
T * OwningPtr
An alias for raw pointers for indicating that the return type of a RooFit function is an owning point...
Definition Config.h:35