Likelihood and minimization: setting up a chi^2 fit to a binned dataset 
 
 
{
 
   
   
 
   
 
   
   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.);
 
 
   
   
 
 
   
   
   
   
   
 
   
   
 
   
   
   
   std::unique_ptr<RooAbsReal> chi2_lowstat{model.createChi2(*dhsmall)};
   cout << chi2_lowstat->getVal() << endl;
}
RooAbsData * reduce(const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg(), const RooCmdArg &arg3=RooCmdArg(), const RooCmdArg &arg4=RooCmdArg(), const RooCmdArg &arg5=RooCmdArg(), const RooCmdArg &arg6=RooCmdArg(), const RooCmdArg &arg7=RooCmdArg(), const RooCmdArg &arg8=RooCmdArg())
Create a reduced copy of this dataset.
 
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
 
RooArgList is a container object that can hold multiple RooAbsArg objects.
 
RooArgSet is a container object that can hold multiple RooAbsArg objects.
 
Chebychev polynomial p.d.f.
 
The RooDataHist is a container class to hold N-dimensional binned data.
 
RooDataSet is a container class to hold unbinned data.
 
RooDataHist * binnedClone(const char *newName=nullptr, const char *newTitle=nullptr) const
Return binned clone of this dataset.
 
RooRealVar represents a variable that can be changed from the outside.
 
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
 
   
[#0] WARNING:InputArguments -- The parameter 'sigma1' with range [-1e+30, 1e+30] of the RooGaussian 'sig1' exceeds the safe range of (0, inf). Advise to limit its range.
[#0] WARNING:InputArguments -- The parameter 'sigma2' with range [-1e+30, 1e+30] of the RooGaussian 'sig2' exceeds the safe range of (0, inf). Advise to limit its range.
[#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: activating const optimization
[#1] INFO:Minimization --  The following expressions have been identified as constant and will be precalculated and cached: (sig1,sig2)
90.845
- Date
 - July 2008 
 
- Author
 - Wouter Verkerke 
 
Definition in file rf602_chi2fit.C.