Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooWorkspace.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooWorkspace.h,v 1.3 2007/07/16 21:04:28 wouter 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_WORKSPACE
17#define ROO_WORKSPACE
18
19#include "RooPrintable.h"
20#include "RooArgSet.h"
21#include "RooLinkedList.h"
22#include "RooCmdArg.h"
24#include "TUUID.h"
25#include <map>
26#include <list>
27#include <string>
28#include "ROOT/RMakeUnique.hxx"
29
30class TClass ;
31class RooAbsPdf ;
32class RooAbsData ;
33class RooRealVar ;
34class RooCategory ;
35class RooAbsReal ;
36class RooAbsCategory ;
37class RooFactoryWSTool ;
38class RooAbsStudy ;
39
40#include "TNamed.h"
41#include "TDirectoryFile.h"
42
43class RooWorkspace : public TNamed {
44public:
45
46 RooWorkspace() ;
47 RooWorkspace(const char* name, Bool_t doCINTExport) ;
48 RooWorkspace(const char* name, const char* title=0) ;
49 RooWorkspace(const RooWorkspace& other) ;
51
52 void exportToCint(const char* namespaceName=0) ;
53
54 Bool_t importClassCode(const char* pat="*", Bool_t doReplace=kFALSE) ;
55 Bool_t importClassCode(TClass* theClass, Bool_t doReplace=kFALSE) ;
56
57 // Import functions for dataset, functions, generic objects
58 Bool_t import(const RooAbsArg& arg,
59 const RooCmdArg& arg1=RooCmdArg(),const RooCmdArg& arg2=RooCmdArg(),const RooCmdArg& arg3=RooCmdArg(),
60 const RooCmdArg& arg4=RooCmdArg(),const RooCmdArg& arg5=RooCmdArg(),const RooCmdArg& arg6=RooCmdArg(),
61 const RooCmdArg& arg7=RooCmdArg(),const RooCmdArg& arg8=RooCmdArg(),const RooCmdArg& arg9=RooCmdArg()) ;
62 Bool_t import(const RooArgSet& args,
63 const RooCmdArg& arg1=RooCmdArg(),const RooCmdArg& arg2=RooCmdArg(),const RooCmdArg& arg3=RooCmdArg(),
64 const RooCmdArg& arg4=RooCmdArg(),const RooCmdArg& arg5=RooCmdArg(),const RooCmdArg& arg6=RooCmdArg(),
65 const RooCmdArg& arg7=RooCmdArg(),const RooCmdArg& arg8=RooCmdArg(),const RooCmdArg& arg9=RooCmdArg()) ;
66 Bool_t import(RooAbsData& data,
67 const RooCmdArg& arg1=RooCmdArg(),const RooCmdArg& arg2=RooCmdArg(),const RooCmdArg& arg3=RooCmdArg(),
68 const RooCmdArg& arg4=RooCmdArg(),const RooCmdArg& arg5=RooCmdArg(),const RooCmdArg& arg6=RooCmdArg(),
69 const RooCmdArg& arg7=RooCmdArg(),const RooCmdArg& arg8=RooCmdArg(),const RooCmdArg& arg9=RooCmdArg()) ;
70 Bool_t import(const char *fileSpec,
71 const RooCmdArg& arg1=RooCmdArg(),const RooCmdArg& arg2=RooCmdArg(),const RooCmdArg& arg3=RooCmdArg(),
72 const RooCmdArg& arg4=RooCmdArg(),const RooCmdArg& arg5=RooCmdArg(),const RooCmdArg& arg6=RooCmdArg(),
73 const RooCmdArg& arg7=RooCmdArg(),const RooCmdArg& arg8=RooCmdArg(),const RooCmdArg& arg9=RooCmdArg()) ;
74 Bool_t import(TObject& object, Bool_t replaceExisting=kFALSE) ;
75 Bool_t import(TObject& object, const char* aliasName, Bool_t replaceExisting=kFALSE) ;
76
77 // Transaction management interface for multi-step import operations
81
82 // Named set management
83 Bool_t defineSet(const char* name, const RooArgSet& aset, Bool_t importMissing=kFALSE) ;
84 Bool_t defineSet(const char* name, const char* contentList) ;
85 Bool_t extendSet(const char* name, const char* newContents) ;
86 Bool_t renameSet(const char* name, const char* newName) ;
87 Bool_t removeSet(const char* name) ;
88 const RooArgSet* set(const char* name) ;
89
90 // Import, load and save parameter value snapshots
91 Bool_t saveSnapshot(const char* name, const char* paramNames) ;
92 Bool_t saveSnapshot(const char* name, const RooArgSet& params, Bool_t importValues=kFALSE) ;
93 Bool_t loadSnapshot(const char* name) ;
94 const RooArgSet* getSnapshot(const char* name) const ;
95
96 void merge(const RooWorkspace& /*other*/) {} ;
97
98 // Join p.d.f.s and datasets for simultaneous analysis
99 // RooAbsPdf* joinPdf(const char* jointPdfName, const char* indexName, const char* inputMapping) ;
100 // RooAbsData* joinData(const char* jointDataName, const char* indexName, const char* inputMapping) ;
101
102 // Accessor functions
103 RooAbsPdf* pdf(const char* name) const ;
104 RooAbsReal* function(const char* name) const ;
105 RooRealVar* var(const char* name) const ;
106 RooCategory* cat(const char* name) const ;
107 RooAbsCategory* catfunc(const char* name) const ;
108 RooAbsData* data(const char* name) const ;
109 RooAbsData* embeddedData(const char* name) const ;
110 RooAbsArg* arg(const char* name) const ;
111 RooAbsArg* fundArg(const char* name) const ;
112 RooArgSet argSet(const char* nameList) const ;
114 const RooArgSet& components() const { return _allOwnedNodes ; }
115 TObject* genobj(const char* name) const ;
116 TObject* obj(const char* name) const ;
117
118 // Group accessors
119 RooArgSet allVars() const;
120 RooArgSet allCats() const ;
121 RooArgSet allFunctions() const ;
122 RooArgSet allCatFunctions() const ;
123 RooArgSet allPdfs() const ;
125 std::list<RooAbsData*> allData() const ;
126 std::list<RooAbsData*> allEmbeddedData() const ;
127 std::list<TObject*> allGenericObjects() const ;
128
129 Bool_t makeDir() ;
130 Bool_t cd(const char* path = 0) ;
131
132 Bool_t writeToFile(const char* fileName, Bool_t recreate=kTRUE) ;
133
134 /// Make internal collection use an unordered_map for
135 /// faster searching. Important when large trees are
136 /// imported / or modified in the workspace.
137 /// Note that RooAbsCollection may eventually switch
138 /// this on by itself.
139 void useFindsWithHashLookup(bool flag) {
141 }
142
143 virtual void RecursiveRemove(TObject *obj);
144
145 // Tools management
147 RooAbsArg* factory(const char* expr) ;
148
149 // RooStudyManager modules
150 Bool_t addStudy(RooAbsStudy& study) ;
152 void clearStudies() ;
153
154 // Print function
155 void Print(Option_t* opts=0) const ;
156
157 static void autoImportClassCode(Bool_t flag) ;
158
159 static void addClassDeclImportDir(const char* dir) ;
160 static void addClassImplImportDir(const char* dir) ;
161 static void setClassFileExportDir(const char* dir=0) ;
162
163 const TUUID& uuid() const { return _uuid ; }
164
166
167 class CodeRepo : public TObject {
168 public:
169 CodeRepo(RooWorkspace* wspace=0) : _wspace(wspace), _compiledOK(kTRUE) {} ;
170
171 CodeRepo(const CodeRepo& other, RooWorkspace* wspace=0) : TObject(other) ,
172 _wspace(wspace?wspace:other._wspace),
173 _c2fmap(other._c2fmap),
174 _fmap(other._fmap),
175 _ehmap(other._ehmap),
176 _compiledOK(other._compiledOK) {} ;
177
178 virtual ~CodeRepo() {} ;
179
180 Bool_t autoImportClass(TClass* tc, Bool_t doReplace=kFALSE) ;
182
183 Bool_t compiledOK() const { return _compiledOK ; }
184
185 std::string listOfClassNames() const ;
186
187
188
190 public:
193 } ;
194
196 public:
202 } ;
203
204
205 class ExtraHeader {
206 public:
209 } ;
210
211 protected:
212 RooWorkspace* _wspace ; // owning workspace
213 std::map<TString,ClassRelInfo> _c2fmap ; // List of contained classes
214 std::map<TString,ClassFiles> _fmap ; // List of contained files
215 std::map<TString,ExtraHeader> _ehmap ; // List of extra header files
216 Bool_t _compiledOK ; //! Flag indicating that classes compiled OK
217
218 ClassDef(CodeRepo,2) ; // Code repository for RooWorkspace
219 } ;
220
221
222 class WSDir : public TDirectoryFile {
223 public:
224 WSDir(const char* name, const char* title, RooWorkspace* wspace) :
225 TDirectoryFile(name,title,"RooWorkspace::WSDir",0),
226 _wspace(wspace)
227 {
228 }
229
230 virtual ~WSDir() { Clear("nodelete") ; } ;
231
232
233 virtual void Add(TObject*,Bool_t) ;
234 virtual void Append(TObject*,Bool_t) ;
235
236 protected:
237 friend class RooWorkspace ;
238 void InternalAppend(TObject* obj) ;
239 RooWorkspace* _wspace ; //! do not persist
240
241 ClassDef(WSDir,1) ; // TDirectory representation of RooWorkspace
242 } ;
243
244
245 private:
246 friend class RooAbsArg;
247 friend class RooAbsPdf;
248 Bool_t defineSetInternal(const char *name, const RooArgSet &aset);
249
250 Bool_t isValidCPPID(const char *name);
251 void exportObj(TObject *obj);
252 void unExport();
253
254 friend class CodeRepo;
255 static std::list<std::string> _classDeclDirList;
256 static std::list<std::string> _classImplDirList;
257 static std::string _classFileExportDir;
258
259 TUUID _uuid; // Unique workspace ID
260
261 static Bool_t _autoClass; // Automatic import of non-distribution class code
262
263 CodeRepo _classes; // Repository of embedded class code. This data member _must_ be first
264
265 RooArgSet _allOwnedNodes; // List of owned pdfs and components
266 RooLinkedList _dataList; // List of owned datasets
267 RooLinkedList _embeddedDataList; // List of owned datasets that are embedded in pdfs
268 RooLinkedList _views; // List of model views
269 RooLinkedList _snapshots; // List of parameter snapshots
270 RooLinkedList _genObjects; // List of generic objects
271 RooLinkedList _studyMods; // List if StudyManager modules
272 std::map<std::string, RooArgSet> _namedSets; // Map of named RooArgSets
273
274 WSDir *_dir; //! Transient ROOT directory representation of workspace
275
276 RooExpensiveObjectCache _eocache; // Cache for expensive objects
277
278 std::unique_ptr<RooFactoryWSTool> _factory; //! Factory tool associated with workspace
279
280 Bool_t _doExport; //! Export contents of workspace to CINT?
281 std::string _exportNSName; //! Name of CINT namespace to which contents are exported
282
283 Bool_t _openTrans; //! Is there a transaction open?
284 RooArgSet _sandboxNodes; //! Sandbox for incoming objects in a transaction
285
286 ClassDef(RooWorkspace, 8) // Persistable project container for (composite) pdfs, functions, variables and datasets
287} ;
288
289#endif
const Bool_t kFALSE
Definition RtypesCore.h:92
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
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:72
RooAbsCategory is the base class for objects that represent a discrete value with a finite number of ...
void useHashMapForFind(bool flag) const
Install an internal hash map for fast finding of elements by name.
TIterator * createIterator(Bool_t dir=kIterForward) const
TIterator-style iteration over contained elements.
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:49
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:61
RooAbsStudy is an abstract base class for RooStudyManager modules.
Definition RooAbsStudy.h:33
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:29
RooCategory is an object to represent discrete states.
Definition RooCategory.h:27
RooCmdArg is a named container for two doubles, two integers two object points and three string point...
Definition RooCmdArg.h:27
RooExpensiveObjectCache is a singleton class that serves as repository for objects that are expensive...
RooFactoryWSTool is a class similar to TTree::MakeClass() that generates skeleton code for RooAbsPdf ...
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
TIterator * MakeIterator(Bool_t forward=kTRUE) const
Create a TIterator for this list.
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
Bool_t autoImportClass(TClass *tc, Bool_t doReplace=kFALSE)
Import code of class 'tc' into the repository.
std::map< TString, ExtraHeader > _ehmap
CodeRepo(RooWorkspace *wspace=0)
RooWorkspace * _wspace
std::string listOfClassNames() const
Return STL string with last of class names contained in the code repository.
Bool_t compiledOK() const
std::map< TString, ClassRelInfo > _c2fmap
Bool_t compileClasses()
For all classes in the workspace for which no class definition is found in the ROOT class table extra...
CodeRepo(const CodeRepo &other, RooWorkspace *wspace=0)
std::map< TString, ClassFiles > _fmap
virtual void Append(TObject *, Bool_t)
Overload TDirectory interface method to prohibit insertion of objects in read-only directory workspac...
void InternalAppend(TObject *obj)
Internal access to TDirectory append method.
virtual void Add(TObject *, Bool_t)
Overload TDirectory interface method to prohibit insertion of objects in read-only directory workspac...
WSDir(const char *name, const char *title, RooWorkspace *wspace)
RooWorkspace * _wspace
The RooWorkspace is a persistable container for RooFit projects.
Bool_t makeDir()
Create transient TDirectory representation of this workspace.
RooExpensiveObjectCache _eocache
Transient ROOT directory representation of workspace.
RooLinkedList _genObjects
void exportToCint(const char *namespaceName=0)
Activate export of workspace symbols to CINT in a namespace with given name.
std::string _exportNSName
Export contents of workspace to CINT?
static std::list< std::string > _classDeclDirList
const RooArgSet * getSnapshot(const char *name) const
Return the RooArgSet containing a snapshot of variables contained in the workspace.
Bool_t extendSet(const char *name, const char *newContents)
Define a named set in the work space through a comma separated list of names of objects already in th...
static void addClassDeclImportDir(const char *dir)
Add dir to search path for class declaration (header) files.
Bool_t defineSetInternal(const char *name, const RooArgSet &aset)
void unExport()
Delete exported reference in CINT namespace.
RooLinkedList _dataList
RooAbsData * data(const char *name) const
Retrieve dataset (binned or unbinned) with given name. A null pointer is returned if not found.
RooAbsData * embeddedData(const char *name) const
Retrieve dataset (binned or unbinned) with given name. A null pointer is returned if not found.
static void addClassImplImportDir(const char *dir)
Add dir to search path for class implementation (.cxx) files.
TObject * genobj(const char *name) const
Return generic object with given name.
std::map< std::string, RooArgSet > _namedSets
Bool_t _openTrans
Name of CINT namespace to which contents are exported.
std::list< RooAbsData * > allData() const
Return list of all dataset in the workspace.
void clearStudies()
Remove all RooStudyManager modules.
void useFindsWithHashLookup(bool flag)
Make internal collection use an unordered_map for faster searching.
RooAbsArg * fundArg(const char *name) const
Return fundamental (i.e.
RooArgSet argSet(const char *nameList) const
Return set of RooAbsArgs matching to given list of names.
std::unique_ptr< RooFactoryWSTool > _factory
RooArgSet allVars() const
Return set with all variable objects.
virtual void RecursiveRemove(TObject *obj)
If one of the TObject we have a referenced to is deleted, remove the reference.
RooArgSet allCats() const
Return set with all category objects.
Bool_t commitTransaction()
RooLinkedList _views
Bool_t startTransaction()
Open an import transaction operations.
RooAbsReal * function(const char *name) const
Retrieve function (RooAbsReal) with given name. Note that all RooAbsPdfs are also RooAbsReals....
TIterator * studyIterator()
RooArgSet allResolutionModels() const
Return set with all resolution model objects.
RooLinkedList _snapshots
Bool_t importClassCode(const char *pat="*", Bool_t doReplace=kFALSE)
Inport code of all classes in the workspace that have a class name that matches pattern 'pat' and whi...
void merge(const RooWorkspace &)
RooCategory * cat(const char *name) const
Retrieve discrete variable (RooCategory) with given name. A null pointer is returned if not found.
Bool_t renameSet(const char *name, const char *newName)
Rename set to a new name.
RooAbsArg * arg(const char *name) const
Return RooAbsArg with given name. A null pointer is returned if none is found.
std::list< RooAbsData * > allEmbeddedData() const
Return list of all dataset in the workspace.
void Print(Option_t *opts=0) const
Print contents of the workspace.
RooArgSet allPdfs() const
Return set with all probability density function objects.
Bool_t addStudy(RooAbsStudy &study)
Insert RooStudyManager module.
Bool_t writeToFile(const char *fileName, Bool_t recreate=kTRUE)
Save this current workspace into given file.
std::list< TObject * > allGenericObjects() const
Return list of all generic objects in the workspace.
static void setClassFileExportDir(const char *dir=0)
Specify the name of the directory in which embedded source code is unpacked and compiled.
Bool_t _doExport
Factory tool associated with workspace.
Bool_t removeSet(const char *name)
Remove a named set from the workspace.
static void autoImportClassCode(Bool_t flag)
If flag is true, source code of classes not the the ROOT distribution is automatically imported if on...
RooAbsCategory * catfunc(const char *name) const
Retrieve discrete function (RooAbsCategory) with given name. A null pointer is returned if not found.
RooLinkedList _studyMods
RooArgSet allCatFunctions() const
Return set with all category function objects.
static std::string _classFileExportDir
static std::list< std::string > _classImplDirList
~RooWorkspace()
Workspace destructor.
Bool_t defineSet(const char *name, const RooArgSet &aset, Bool_t importMissing=kFALSE)
Define a named RooArgSet with given constituents.
RooWorkspace()
Default constructor.
Bool_t cd(const char *path=0)
Bool_t saveSnapshot(const char *name, const char *paramNames)
Save snapshot of values and attributes (including "Constant") of given parameters.
Bool_t loadSnapshot(const char *name)
Load the values and attributes of the parameters in the snapshot saved with the given name.
CodeRepo _classes
RooRealVar * var(const char *name) const
Retrieve real-valued variable (RooRealVar) with given name. A null pointer is returned if not found.
const RooArgSet & components() const
RooArgSet allFunctions() const
Return set with all function objects.
RooFactoryWSTool & factory()
Return instance to factory tool.
RooExpensiveObjectCache & expensiveObjectCache()
Bool_t isValidCPPID(const char *name)
Return true if given name is a valid C++ identifier name.
RooArgSet _sandboxNodes
Is there a transaction open?
Bool_t cancelTransaction()
Cancel an ongoing import transaction.
void exportObj(TObject *obj)
Export reference to given workspace object to CINT.
const TUUID & uuid() const
static Bool_t _autoClass
RooLinkedList _embeddedDataList
RooArgSet _allOwnedNodes
const RooArgSet * set(const char *name)
Return pointer to previously defined named set with given nmame If no such set is found a null pointe...
TObject * obj(const char *name) const
Return any type of object (RooAbsArg, RooAbsData or generic object) with given name)
TIterator * componentIterator() const
RooAbsPdf * pdf(const char *name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:80
A ROOT file is structured in Directories (like a file system).
void Clear(Option_t *option="") override
Delete all objects from a Directory list.
Iterator abstract base class.
Definition TIterator.h:30
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Mother of all ROOT objects.
Definition TObject.h:37
Basic string class.
Definition TString.h:136
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
Definition TUUID.h:42