Fill a 1-D histogram from a parametric function.
auto sqroot =
new TF1(
"sqroot",
"x*gaus(0) + [3]*form1",0,10);
sqroot->SetParameters(10,4,1,20);
auto h1f =
new TH1F(
"h1f",
"Test random numbers",200,0,10);
h1f->FillRandom(
"sqroot",10000);
auto pad1 =
new TPad(
"pad1",
"The pad with the function",0.05,0.50,0.95,0.95);
auto pad2 =
new TPad(
"pad2",
"The pad with the histogram",0.05,0.05,0.95,0.45);
pad1->GetFrame()->SetBorderMode(-1);
pad1->GetFrame()->SetBorderSize(5);
pad2->GetFrame()->SetBorderMode(-1);
pad2->GetFrame()->SetBorderSize(5);
}
}
R__EXTERN TBenchmark * gBenchmark
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter char TVirtualGLPainter plot
virtual void Start(const char *name)
Starts Benchmark with the specified name.
virtual void Show(const char *name)
Stops Benchmark name and Prints results.
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
1-D histogram with a float per channel (see TH1 documentation)
The most important graphics class in the ROOT system.
A Pave (see TPave) with a text centered in the Pave.
- Author
- Rene Brun
Definition in file fillrandom.C.