00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
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
00036
00037
00038
00039 RooRealVar x("x","x",0,10) ;
00040
00041
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
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
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
00060
00061
00062
00063 x.setRange("signalRange",4,6) ;
00064
00065
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
00073
00074
00075
00076 RooAddPdf model("model","(g1+g2)+a",RooArgList(ebkg,esig)) ;
00077
00078
00079
00080
00081
00082
00083 RooDataSet *data = model.generate(x,1000) ;
00084
00085
00086
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 } ;