Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
rf508_listsetmanip.C File Reference

Detailed Description

View in nbviewer Open in SWAN
Organization and simultaneous fits: RooArgSet and RooArgList tools and tricks

#include "RooRealVar.h"
#include "RooDataSet.h"
#include "RooGaussian.h"
#include "TCanvas.h"
#include "TAxis.h"
#include "RooPlot.h"
#include "RooArgSet.h"
#include "RooArgList.h"
#include "RooCategory.h"
using namespace RooFit;
{
// C r e a t e d u m m y o b j e c t s
// ---------------------------------------
// Create some variables
RooRealVar a("a", "a", 1, -10, 10);
RooRealVar b("b", "b", 2, -10, 10);
RooRealVar c("c", "c", 3, -10, 10);
RooRealVar d("d", "d", 4, -10, 10);
RooRealVar x("x", "x", 0, -10, 10);
c.setError(0.5);
a.setConstant();
b.setConstant();
// Create a category
RooCategory e("e", "e");
e.defineType("sig");
e.defineType("bkg");
// Create a pdf
RooGaussian g("g", "g", x, a, b);
// C r e a t i n g , f i l l i n g R o o A r g S e t s
// -------------------------------------------------------
// A RooArgSet is a set of RooAbsArg objects. Each object in the set must have
// a unique name
// Set constructors exists with up to 9 initial arguments
RooArgSet s(a, b);
// At any time objects can be added with add()
s.add(e);
// Add up to 9 additional arguments in one call
s.add(RooArgSet(c, d));
// Sets can contain any type of RooAbsArg, also pdf and functions
s.add(g);
// Remove element d
s.remove(d);
// A c c e s s i n g R o o A r g S e t c o n t e n t s
// -------------------------------------------------------
// You can look up objects by name
RooAbsArg *aptr = s.find("a");
// Construct a subset by name
RooArgSet *subset1 = (RooArgSet *)s.selectByName("a,b,c");
// Construct asubset by attribute
RooArgSet *subset2 = (RooArgSet *)s.selectByAttrib("Constant", true);
// Construct the subset of overlapping contents with another set
RooArgSet s2(c, d, e);
RooArgSet *subset3 = (RooArgSet *)s1.selectCommon(s2);
// O w n i n g R o o A r g S e t s
// ---------------------------------
// Create a RooArgSet that owns its components
// A set either owns all of its components or none,
// so once addOwned() is used, add() can no longer be
// used and will result in an error message
RooRealVar *ac = (RooRealVar *)a.clone("a");
RooRealVar *bc = (RooRealVar *)b.clone("b");
RooRealVar *cc = (RooRealVar *)c.clone("c");
s3.addOwned(RooArgSet(*ac, *bc, *cc));
// Another possibility is to add an owned clone
// of an object instead of the original
// A clone of a owning set is non-owning and its
// contents is owned by the originating owning set
RooArgSet *sclone = (RooArgSet *)s3.Clone("sclone");
// To make a clone of a set and its contents use
// the snapshot method
RooArgSet *sclone2 = (RooArgSet *)s3.snapshot();
// If a set contains function objects, only the head node
// is cloned in a snapshot. To make a snapshot of all
// servers of a function object do as follows. The result
// of a RooArgSet snapshot with deepCloning option is a set
// of cloned objects, and all their clone (recursive) server
// dependencies, that together form a self-consistent
// set that is free of external dependencies
RooArgSet *sclone3 = (RooArgSet *)s3.snapshot(true);
// S e t p r i n t i n g
// ------------------------
// Inline printing only show list of names of contained objects
cout << "sclone = " << (*sclone) << endl;
// Plain print shows the same, prefixed by name of the set
sclone->Print();
// Standard printing shows one line for each item with the items name, class name and value
sclone->Print("s");
// Verbose printing adds each items arguments, address and 'extras' as defined by the object
sclone->Print("v");
// U s i n g R o o A r g L i s t s
// ---------------------------------
// List constructors exists with up to 9 initial arguments
RooArgList l(a, b, c, d);
// Lists have an explicit order and allow multiple arguments with the same name
l.add(RooArgList(a, b, c, d));
// Access by index is provided
RooAbsArg *arg4 = l.at(4);
}
#define d(i)
Definition RSha256.hxx:102
#define b(i)
Definition RSha256.hxx:100
#define c(i)
Definition RSha256.hxx:101
#define g(i)
Definition RSha256.hxx:105
#define a(i)
Definition RSha256.hxx:99
#define s1(x)
Definition RSha256.hxx:91
#define e(i)
Definition RSha256.hxx:103
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:77
RooAbsCollection * selectByAttrib(const char *name, bool value) const
Create a subset of the current collection, consisting only of those elements with the specified attri...
TObject * Clone(const char *newname=nullptr) const override
Make a clone of an object using the Streamer facility.
virtual bool addOwned(RooAbsArg &var, bool silent=false)
Add an argument and transfer the ownership to the collection.
RooAbsCollection * selectByName(const char *nameList, bool verbose=false) const
Create a subset of the current collection, consisting only of those elements with names matching the ...
virtual RooAbsArg * addClone(const RooAbsArg &var, bool silent=false)
Add a clone of the specified argument to list.
bool selectCommon(const RooAbsCollection &refColl, RooAbsCollection &outColl) const
Create a subset of the current collection, consisting only of those elements that are contained as we...
void Print(Option_t *options=nullptr) const override
This method must be overridden when a class wants to print itself.
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:55
RooArgSet * snapshot(bool deepCopy=true) const
Use RooAbsCollection::snapshot(), but return as RooArgSet.
Definition RooArgSet.h:178
Object to represent discrete states.
Definition RooCategory.h:28
Plain Gaussian p.d.f.
Definition RooGaussian.h:24
Variable that can be changed from the outside.
Definition RooRealVar.h:37
TObject * clone(const char *newname) const override
Definition RooRealVar.h:48
Double_t x[n]
Definition legend1.C:17
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition JSONIO.h:26
TLine l
Definition textangle.C:4
[#0] WARNING:InputArguments -- The parameter 'b' with range [-10, 10] of the RooGaussian 'g' exceeds the safe range of (0, inf). Advise to limit its range.
sclone = (a,b,c,d,e,g)
RooArgSet::sclone = (a,b,c,d,e,g)
1) RooRealVar:: a = 1
2) RooRealVar:: b = 2
3) RooRealVar:: c = 3 +/- 0.5
4) RooRealVar:: d = 4
5) RooCategory:: e = sig(idx = 0)
6) RooGaussian:: g = 0.882497
1) 0x5616a0be76a0 RooRealVar:: a = 1 C L(-10 - 10) "a"
2) 0x5616a0c1c560 RooRealVar:: b = 2 C L(-10 - 10) "b"
3) 0x5616a0c3e2d0 RooRealVar:: c = 3 +/- 0.5 L(-10 - 10) "c"
4) 0x5616a2fd9e50 RooRealVar:: d = 4 L(-10 - 10) "d"
5) 0x5616a3039cf0 RooCategory:: e = sig(idx = 0)
"e"
6) 0x5616a0f682d0 RooGaussian:: g[ x=x mean=a sigma=b ] = 0.882497 "g"
Date
July 2008
Author
Wouter Verkerke

Definition in file rf508_listsetmanip.C.