Logo ROOT  
Reference Guide
rf209_anaconv.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_roofit
3/// \notebook -js
4///
5/// Addition and convolution: decay function p.d.fs with optional B physics effects (mixing and CP violation)
6///
7/// that can be analytically convolved with e.g. Gaussian resolution functions
8///
9/// ```
10/// pdf1 = decay(t,tau) (x) delta(t)
11/// pdf2 = decay(t,tau) (x) gauss(t,m,s)
12/// pdf3 = decay(t,tau) (x) (f*gauss1(t,m1,s1) + (1-f)*gauss2(t,m1,s1))
13/// ```
14///
15/// \macro_image
16/// \macro_output
17/// \macro_code
18///
19/// \date 07/2008
20/// \author Wouter Verkerke
21
22#include "RooRealVar.h"
23#include "RooDataSet.h"
24#include "RooGaussModel.h"
25#include "RooAddModel.h"
26#include "RooTruthModel.h"
27#include "RooDecay.h"
28#include "RooPlot.h"
29#include "TCanvas.h"
30#include "TAxis.h"
31#include "TH1.h"
32using namespace RooFit;
33
34void rf209_anaconv()
35{
36 // B - p h y s i c s p d f w i t h t r u t h r e s o l u t i o n
37 // ---------------------------------------------------------------------
38
39 // Variables of decay p.d.f.
40 RooRealVar dt("dt", "dt", -10, 10);
41 RooRealVar tau("tau", "tau", 1.548);
42
43 // Build a truth resolution model (delta function)
44 RooTruthModel tm1("tm", "truth model", dt);
45
46 // Construct decay(t) (x) delta(t)
47 RooDecay decay_tm("decay_tm", "decay", dt, tau, tm1, RooDecay::DoubleSided);
48
49 // Plot p.d.f. (dashed)
50 RooPlot *frame = dt.frame(Title("Bdecay (x) resolution"));
51 decay_tm.plotOn(frame, LineStyle(kDashed));
52
53 // B - p h y s i c s p d f w i t h G a u s s i a n r e s o l u t i o n
54 // ----------------------------------------------------------------------------
55
56 // Build a gaussian resolution model
57 RooRealVar bias1("bias1", "bias1", 0);
58 RooRealVar sigma1("sigma1", "sigma1", 1);
59 RooGaussModel gm1("gm1", "gauss model 1", dt, bias1, sigma1);
60
61 // Construct decay(t) (x) gauss1(t)
62 RooDecay decay_gm1("decay_gm1", "decay", dt, tau, gm1, RooDecay::DoubleSided);
63
64 // Plot p.d.f.
65 decay_gm1.plotOn(frame);
66
67 // B - p h y s i c s p d f w i t h d o u b l e G a u s s i a n r e s o l u t i o n
68 // ------------------------------------------------------------------------------------------
69
70 // Build another gaussian resolution model
71 RooRealVar bias2("bias2", "bias2", 0);
72 RooRealVar sigma2("sigma2", "sigma2", 5);
73 RooGaussModel gm2("gm2", "gauss model 2", dt, bias2, sigma2);
74
75 // Build a composite resolution model f*gm1+(1-f)*gm2
76 RooRealVar gm1frac("gm1frac", "fraction of gm1", 0.5);
77 RooAddModel gmsum("gmsum", "sum of gm1 and gm2", RooArgList(gm1, gm2), gm1frac);
78
79 // Construct decay(t) (x) (f*gm1 + (1-f)*gm2)
80 RooDecay decay_gmsum("decay_gmsum", "decay", dt, tau, gmsum, RooDecay::DoubleSided);
81
82 // Plot p.d.f. (red)
83 decay_gmsum.plotOn(frame, LineColor(kRed));
84
85 // Draw all frames on canvas
86 new TCanvas("rf209_anaconv", "rf209_anaconv", 600, 600);
87 gPad->SetLeftMargin(0.15);
88 frame->GetYaxis()->SetTitleOffset(1.6);
89 frame->Draw();
90}
@ kRed
Definition: Rtypes.h:64
@ kDashed
Definition: TAttLine.h:48
#define gPad
Definition: TVirtualPad.h:287
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgList.h:21
Single or double sided decay function that can be analytically convolved with any RooResolutionModel ...
Definition: RooDecay.h:22
@ DoubleSided
Definition: RooDecay.h:25
Class RooGaussModel implements a RooResolutionModel that models a Gaussian distribution.
Definition: RooGaussModel.h:26
A RooPlot is a plot frame and a container for graphics objects within that frame.
Definition: RooPlot.h:44
TAxis * GetYaxis() const
Definition: RooPlot.cxx:1277
static RooPlot * frame(const RooAbsRealLValue &var, Double_t xmin, Double_t xmax, Int_t nBins)
Create a new frame for a given variable in x.
Definition: RooPlot.cxx:277
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Definition: RooPlot.cxx:712
RooRealVar represents a variable that can be changed from the outside.
Definition: RooRealVar.h:35
RooTruthModel is an implementation of RooResolution model that provides a delta-function resolution m...
Definition: RooTruthModel.h:21
virtual void SetTitleOffset(Float_t offset=1)
Set distance between the axis and the axis title.
Definition: TAttAxis.cxx:294
The Canvas class.
Definition: TCanvas.h:27
RooCmdArg LineColor(Color_t color)
RooCmdArg LineStyle(Style_t style)
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
const char * Title
Definition: TXMLSetup.cxx:67