'LIKELIHOOD AND MINIMIZATION' RooFit tutorial macro #602
Setting up a chi^2 fit to a binned dataset
Processing /mnt/build/workspace/root-makedoc-v610/rootspi/rdoc/src/v6-10-00-patches/tutorials/roofit/rf602_chi2fit.C...
void rf602_chi2fit()
{
RooRealVar sigma1(
"sigma1",
"width of gaussians",0.5) ;
RooRealVar sigma2(
"sigma2",
"width of gaussians",1) ;
RooGaussian sig1(
"sig1",
"Signal component 1",x,mean,sigma1) ;
RooGaussian sig2(
"sig2",
"Signal component 2",x,mean,sigma2) ;
RooRealVar sig1frac(
"sig1frac",
"fraction of component 1 in signal",0.8,0.,1.) ;
RooRealVar bkgfrac(
"bkgfrac",
"fraction of background",0.5,0.,1.) ;
RooChi2Var chi2_lowstat(
"chi2_lowstat",
"chi2",model,*dhsmall) ;
cout << chi2_lowstat.getVal() << endl ;
}
- Author
- 07/2008 - Wouter Verkerke
Definition in file rf602_chi2fit.C.