'DATA AND CATEGORIES' RooFit tutorial macro #407
More...
Go to the source code of this file.
'DATA AND CATEGORIES' RooFit tutorial macro #407
Latex printing of lists and sets of RooArgSets
#ifndef __CINT__
#endif
using namespace RooFit ;
void rf407_latextables()
{
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 bkg1frac(
"sig1frac",
"fraction of component 1 in background",0.2,0.,1.) ;
RooRealVar bkgfrac(
"bkgfrac",
"fraction of background",0.5,0.,1.) ;
model.fitTo(*data) ;
}
- Author
- 07/2008 - Wouter Verkerke
Definition in file rf407_latextables.C.