rf204_extrangefit.C

Go to the documentation of this file.
00001 //////////////////////////////////////////////////////////////////////////
00002 //
00003 // 'ADDITION AND CONVOLUTION' RooFit tutorial macro #204
00004 // 
00005 // Extended maximum likelihood fit with alternate range definition
00006 // for observed number of events.
00007 //
00008 //
00009 //
00010 // 07/2008 - Wouter Verkerke 
00011 // 
00012 /////////////////////////////////////////////////////////////////////////
00013 
00014 #ifndef __CINT__
00015 #include "RooGlobalFunc.h"
00016 #endif
00017 #include "RooRealVar.h"
00018 #include "RooDataSet.h"
00019 #include "RooGaussian.h"
00020 #include "RooChebychev.h"
00021 #include "RooAddPdf.h"
00022 #include "RooExtendPdf.h"
00023 #include "RooFitResult.h"
00024 #include "TCanvas.h"
00025 #include "TAxis.h"
00026 #include "RooPlot.h"
00027 using namespace RooFit ;
00028 
00029 
00030 void rf204_extrangefit()
00031 {
00032 
00033 
00034   // S e t u p   c o m p o n e n t   p d f s 
00035   // ---------------------------------------
00036 
00037   // Declare observable x
00038   RooRealVar x("x","x",0,10) ;
00039 
00040   // Create two Gaussian PDFs g1(x,mean1,sigma) anf g2(x,mean2,sigma) and their paramaters
00041   RooRealVar mean("mean","mean of gaussians",5) ;
00042   RooRealVar sigma1("sigma1","width of gaussians",0.5) ;
00043   RooRealVar sigma2("sigma2","width of gaussians",1) ;
00044 
00045   RooGaussian sig1("sig1","Signal component 1",x,mean,sigma1) ;  
00046   RooGaussian sig2("sig2","Signal component 2",x,mean,sigma2) ;  
00047   
00048   // Build Chebychev polynomial p.d.f.  
00049   RooRealVar a0("a0","a0",0.5,0.,1.) ;
00050   RooRealVar a1("a1","a1",-0.2,0.,1.) ;
00051   RooChebychev bkg("bkg","Background",x,RooArgSet(a0,a1)) ;
00052 
00053   // Sum the signal components into a composite signal p.d.f.
00054   RooRealVar sig1frac("sig1frac","fraction of component 1 in signal",0.8,0.,1.) ;
00055   RooAddPdf sig("sig","Signal",RooArgList(sig1,sig2),sig1frac) ;
00056 
00057 
00058   // C o n s t r u c t   e x t e n d e d   c o m p s   wi t h   r a n g e   s p e c
00059   // ------------------------------------------------------------------------------
00060 
00061   // Define signal range in which events counts are to be defined
00062   x.setRange("signalRange",4,6) ;
00063 
00064   // Associated nsig/nbkg as expected number of events with sig/bkg _in_the_range_ "signalRange"
00065   RooRealVar nsig("nsig","number of signal events in signalRange",500,0.,10000) ;
00066   RooRealVar nbkg("nbkg","number of background events in signalRange",500,0,10000) ;
00067   RooExtendPdf esig("esig","extended signal p.d.f",sig,nsig,"signalRange") ;
00068   RooExtendPdf ebkg("ebkg","extended background p.d.f",bkg,nbkg,"signalRange") ;
00069 
00070 
00071   // S u m   e x t e n d e d   c o m p o n e n t s
00072   // ---------------------------------------------
00073 
00074   // Construct sum of two extended p.d.f. (no coefficients required)
00075   RooAddPdf  model("model","(g1+g2)+a",RooArgList(ebkg,esig)) ;
00076 
00077   
00078   // S a m p l e   d a t a ,   f i t   m o d e l
00079   // -------------------------------------------
00080 
00081   // Generate 1000 events from model so that nsig,nbkg come out to numbers <<500 in fit
00082   RooDataSet *data = model.generate(x,1000) ;
00083 
00084 
00085   // Perform unbinned extended ML fit to data
00086   RooFitResult* r = model.fitTo(*data,Extended(kTRUE),Save()) ;
00087   r->Print() ;
00088 
00089 }

Generated on Tue Jul 5 15:45:01 2011 for ROOT_528-00b_version by  doxygen 1.5.1