51   std::unique_ptr<RooArgSet> params{model.getParameters(
x)};
 
   54   params->writeToFile(
"rf505_asciicfg_example.txt");
 
   57   dir1.
Append(
"/roofit/rf505_asciicfg.txt") ;
 
   58   TString dir2 = 
"rf505_asciicfg_example.txt";
 
   64   params->readFromFile(dir2);
 
   68   params->readFromFile(dir1, 0, 
"Section2");
 
   73   params->readFromFile(dir1, 
"READ", 
"Section3");
 
   76   cout << 
"The following parameters of the were _not_ read from Section3: " 
   77        << (*params->selectByAttrib(
"READ", 
false)) << endl;
 
   83   params->readFromFile(dir1, 0, 
"Section4");
 
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.
 
RooRealVar represents a variable that can be changed from the outside.
 
TString & Append(const char *cs)
 
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...