rf204_extrangefit.cxx

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 "RooPlot.h"
00026 using namespace RooFit ;
00027 
00028 
00029 class TestBasic204 : public RooFitTestUnit
00030 {
00031 public: 
00032   TestBasic204(TFile* refFile, Bool_t writeRef, Int_t verbose) : RooFitTestUnit("Extended ML fit in sub range",refFile,writeRef,verbose) {} ;
00033   Bool_t testCode() {
00034     
00035     // S e t u p   c o m p o n e n t   p d f s 
00036     // ---------------------------------------
00037     
00038     // Declare observable x
00039     RooRealVar x("x","x",0,10) ;
00040     
00041     // Create two Gaussian PDFs g1(x,mean1,sigma) anf g2(x,mean2,sigma) and their paramaters
00042     RooRealVar mean("mean","mean of gaussians",5) ;
00043     RooRealVar sigma1("sigma1","width of gaussians",0.5) ;
00044     RooRealVar sigma2("sigma2","width of gaussians",1) ;
00045     
00046     RooGaussian sig1("sig1","Signal component 1",x,mean,sigma1) ;  
00047     RooGaussian sig2("sig2","Signal component 2",x,mean,sigma2) ;  
00048     
00049     // Build Chebychev polynomial p.d.f.  
00050     RooRealVar a0("a0","a0",0.5,0.,1.) ;
00051     RooRealVar a1("a1","a1",-0.2,0.,1.) ;
00052     RooChebychev bkg("bkg","Background",x,RooArgSet(a0,a1)) ;
00053     
00054     // Sum the signal components into a composite signal p.d.f.
00055     RooRealVar sig1frac("sig1frac","fraction of component 1 in signal",0.8,0.,1.) ;
00056     RooAddPdf sig("sig","Signal",RooArgList(sig1,sig2),sig1frac) ;
00057     
00058     
00059     // 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
00060     // ------------------------------------------------------------------------------
00061     
00062     // Define signal range in which events counts are to be defined
00063     x.setRange("signalRange",4,6) ;
00064     
00065     // Associated nsig/nbkg as expected number of events with sig/bkg _in_the_range_ "signalRange"
00066     RooRealVar nsig("nsig","number of signal events in signalRange",500,0.,10000) ;
00067     RooRealVar nbkg("nbkg","number of background events in signalRange",500,0,10000) ;
00068     RooExtendPdf esig("esig","extended signal p.d.f",sig,nsig,"signalRange") ;
00069     RooExtendPdf ebkg("ebkg","extended background p.d.f",bkg,nbkg,"signalRange") ;
00070     
00071     
00072     // S u m   e x t e n d e d   c o m p o n e n t s
00073     // ---------------------------------------------
00074     
00075     // Construct sum of two extended p.d.f. (no coefficients required)
00076     RooAddPdf  model("model","(g1+g2)+a",RooArgList(ebkg,esig)) ;
00077     
00078     
00079     // S a m p l e   d a t a ,   f i t   m o d e l
00080     // -------------------------------------------
00081     
00082     // Generate 1000 events from model so that nsig,nbkg come out to numbers <<500 in fit
00083     RooDataSet *data = model.generate(x,1000) ;
00084     
00085     
00086     // Perform unbinned extended ML fit to data
00087     RooFitResult* r = model.fitTo(*data,Extended(kTRUE),Save()) ;
00088 
00089 
00090     regResult(r,"rf204_result") ;
00091 
00092     delete data ;
00093     return kTRUE ;
00094   } 
00095 } ;

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