65   std::unique_ptr<RooFitResult> r1{model.fitTo(*
d, 
Save(), 
PrintLevel(-1))};
 
   80   cout << 
"fit result without constraint (data generated at f=0.5)" << endl;
 
   82   cout << 
"fit result with internal constraint (data generated at f=0.5, constraint is f=0.8+/-0.2)" << endl;
 
   84   cout << 
"fit result with (another) external constraint (data generated at f=0.5, constraint is f=0.2+/-0.1)" << endl;
 
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
 
RooArgSet is a container object that can hold multiple RooAbsArg objects.
 
RooDataSet is a container class to hold unbinned data.
 
RooPolynomial implements a polynomial p.d.f of the form.
 
RooProdPdf is an efficient implementation of a product of PDFs of the form.
 
RooRealVar represents a variable that can be changed from the outside.
 
RooConstVar & RooConst(double val)
 
RooCmdArg Constrain(const RooArgSet ¶ms)
 
RooCmdArg Save(bool flag=true)
 
RooCmdArg ExternalConstraints(const RooArgSet &constraintPdfs)
 
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...