␛[1mRooFit v3.60 -- Developed by Wouter Verkerke and David Kirkby␛[0m
Copyright (C) 2000-2013 NIKHEF, University of California & Stanford University
All rights reserved, please read http://roofit.sourceforge.net/license.txt
[#1] INFO:InputArguments -- RooNonCentralChiSquare sum being forced
[#0] WARNING:Eval -- RooNonCentralChiSquare did not converge: for x=36 k=2.01, lambda=5 fractional error = 0.00108172
either adjust tolerance with SetErrorTolerance(tol) or max_iter with SetMaxIter(max_it)
void TestNonCentral()
{
w.factory("NonCentralChiSquare::nc(x[0,50],k[1.99,0,5],lambda[5])");
w.factory("NonCentralChiSquare::ncc(x,kk[2.01,0,5],lambda)");
w.factory("NonCentralChiSquare::nccc(x,kk,lambda)");
w.factory("ChiSquarePdf::cs(x,k)");
RooDataSet *ncdata = w.pdf(
"nc")->generate(*w.var(
"x"), 100);
RooDataSet *csdata = w.pdf(
"cs")->generate(*w.var(
"x"), 100);
w.pdf(
"nc")->plotOn(plot, LineColor(
kRed));
w.pdf(
"ncc")->plotOn(plot, LineColor(
kGreen));
w.pdf(
"cs")->plotOn(plot, LineColor(
kBlue), LineStyle(
kDotted));
}
virtual RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
RooDataSet is a container class to hold unbinned data.
The PDF of the Non-Central Chi Square distribution for n degrees of freedom.
A RooPlot is a plot frame and a container for graphics objects within that frame.
static RooPlot * frame(const RooAbsRealLValue &var, Double_t xmin, Double_t xmax, Int_t nBins)
Create a new frame for a given variable in x.
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
The RooWorkspace is a persistable container for RooFit projects.
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
- Author
- Lorenzo Moneta
Definition in file TestNonCentral.C.