Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooCustomizer.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooCustomizer.h,v 1.11 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
17#ifndef ROO_PDF_CUSTOMIZER
18#define ROO_PDF_CUSTOMIZER
19
20#include "TList.h"
21#include "TNamed.h"
22#include "TString.h"
23#include "RooArgSet.h"
24#include "RooPrintable.h"
25
26#include <vector>
27#include <string>
28
30class RooAbsCategory ;
31class RooAbsArg ;
32class RooAbsPdf ;
33
34// Editing tool for RooAbsArg composite object expressions
36
37public:
38
39 // Constructors, assignment etc
40 RooCustomizer(const RooAbsArg& pdf, const RooAbsCategoryLValue& masterCat, RooArgSet& splitLeafListOwned, RooArgSet* splitLeafListAll=nullptr) ;
41 RooCustomizer(const RooAbsArg& pdf, const char* name) ;
42
43 /// If flag is true, make customizer own all created components
44 void setOwning(bool flag) {
45 _owning = flag ;
46 }
47
48 void splitArgs(const RooArgSet& argSet, const RooAbsCategory& splitCat) ;
49 void splitArg(const RooAbsArg& arg, const RooAbsCategory& splitCat) ;
50 void replaceArg(const RooAbsArg& orig, const RooAbsArg& subst) ;
51 RooAbsArg* build(const char* masterCatState, bool verbose=false) ;
52 RooAbsArg* build(bool verbose=false) ;
53
54 /// Return list of cloned branch nodes
55 const RooArgSet& cloneBranchList() const {
56 return *_cloneBranchList ;
57 }
58 /// Return list of cloned leaf nodes
59 const RooArgSet& cloneLeafList() const {
60 return *_cloneNodeListOwned ;
61 }
62
63 // Printing interface
64 void printArgs(std::ostream& os) const ;
65 void printMultiline(std::ostream& os, Int_t content, bool verbose=false, TString indent= "") const;
66
67 /// Releases ownership of list of cloned branch nodes
68 void setCloneBranchSet(RooArgSet& cloneBranchSet) ;
69
70 RooAbsPdf const& pdf() const;
71
72protected:
73
75 void initialize() ;
76
77 RooAbsArg* doBuild(const char* masterCatState, bool verbose) ;
78
79 bool _sterile ; ///< If true we do not have as associated master category
80 bool _owning ; ///< If true we own all created components
81 TString _name ; ///< Name of this object
82
83 TList _splitArgList ; ///< List of RooAbsArgs to be split
84 TList _splitCatList ; ///< List of categories to be used for above splits
85
86 TList _replaceArgList ; ///< List of RooAbsArgs to be replaced
87 TList _replaceSubList ; ///< List of replacement RooAbsArgs
88
89 // Master nodes are not owned
90 RooAbsArg* _masterPdf ; ///< Pointer to input p.d.f
91 RooAbsCategoryLValue* _masterCat = nullptr; ///< Pointer to input master category
92
93 RooArgSet _masterBranchList ; ///< List of branch nodes
94 RooArgSet _masterLeafList ; ///< List of leaf nodes
95
96 RooArgSet _internalCloneBranchList; ///< List of branches of internal clone
97 RooArgSet* _cloneBranchList = nullptr; ///< Pointer to list of cloned branches used
98
99 // Cloned leaves are owned by the user supplied list in the constructor
100 RooArgSet* _cloneNodeListAll = nullptr; ///< List of all cloned nodes
101 RooArgSet* _cloneNodeListOwned = nullptr;///< List of owned cloned nodes
102} ;
103
104#endif
static void indent(ostringstream &buf, int indent_level)
char name[80]
Definition TGX11.cxx:110
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:77
Abstract base class for objects that represent a discrete value that can be set from the outside,...
A space to attach TBranches.
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooCustomizer is a factory class to produce clones of a prototype composite PDF object with the same ...
TString _name
Name of this object.
TList _splitArgList
List of RooAbsArgs to be split.
void splitArg(const RooAbsArg &arg, const RooAbsCategory &splitCat)
Split all argument 'arg' into individualized clones for each defined state of 'splitCat'.
void setCloneBranchSet(RooArgSet &cloneBranchSet)
Releases ownership of list of cloned branch nodes.
RooArgSet * _cloneNodeListAll
List of all cloned nodes.
void replaceArg(const RooAbsArg &orig, const RooAbsArg &subst)
Replace any occurrence of arg 'orig' with arg 'subst'.
RooAbsArg * _masterPdf
Pointer to input p.d.f.
bool _owning
If true we own all created components.
TList _replaceSubList
List of replacement RooAbsArgs.
RooAbsArg * build(const char *masterCatState, bool verbose=false)
Build a clone of the prototype executing all registered 'replace' rules and 'split' rules for the mas...
const RooArgSet & cloneBranchList() const
Return list of cloned branch nodes.
RooArgSet * _cloneBranchList
Pointer to list of cloned branches used.
RooCustomizer(const RooCustomizer &)
void setOwning(bool flag)
If flag is true, make customizer own all created components.
RooArgSet _masterBranchList
List of branch nodes.
RooArgSet _masterLeafList
List of leaf nodes.
RooArgSet _internalCloneBranchList
List of branches of internal clone.
void initialize()
Initialize the customizer.
const RooArgSet & cloneLeafList() const
Return list of cloned leaf nodes.
RooAbsCategoryLValue * _masterCat
Pointer to input master category.
void splitArgs(const RooArgSet &argSet, const RooAbsCategory &splitCat)
Split all arguments in 'set' into individualized clones for each defined state of 'splitCat'.
void printMultiline(std::ostream &os, Int_t content, bool verbose=false, TString indent="") const
Print customizer configuration details.
RooAbsArg * doBuild(const char *masterCatState, bool verbose)
Back-end implementation of the p.d.f building functionality.
TList _replaceArgList
List of RooAbsArgs to be replaced.
bool _sterile
If true we do not have as associated master category.
RooAbsPdf const & pdf() const
TList _splitCatList
List of categories to be used for above splits.
RooArgSet * _cloneNodeListOwned
List of owned cloned nodes.
void printArgs(std::ostream &os) const
Print arguments of customizer, i.e. input p.d.f and input master category (if any)
A doubly linked list.
Definition TList.h:38
Basic string class.
Definition TString.h:139