Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ratioplot1.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_hist
3/// \notebook
4/// Example creating a simple ratio plot of two histograms using the `pois` division option.
5/// Two histograms are set up and filled with random numbers. The constructor of `TRatioPlot`
6/// takes the two histograms, name and title for the object, drawing options for the histograms
7/// (`hist` and `E` in this case) and a drawing option for the output graph.
8/// The histograms drawing options can be changed with `SetH1DrawOpt` and `SetH2DrawOpt`.
9///
10/// \macro_image
11/// \macro_code
12///
13/// \author Paul Gessinger
14
15void ratioplot1() {
17 auto C = new TCanvas("C", "A ratio example");
18 auto h1 = new TH1D("h1", "TRatioPlot Example; x; y", 50, 0, 10);
19 auto h2 = new TH1D("h2", "h2", 50, 0, 10);
20 auto f1 = new TF1("f1", "exp(- x/[0] )");
21 f1->SetParameter(0, 3);
22 h1->FillRandom("f1", 1900);
23 h2->FillRandom("f1", 2000);
24 h1->Sumw2();
25 h2->Scale(1.9 / 2.);
26 h2->SetLineColor(kRed);
27
28 // Create and draw the ratio plot
29 auto rp = new TRatioPlot(h1, h2);
30 C->SetTicks(0, 1);
31 rp->Draw();
32 rp->GetLowYaxis()->SetNdivisions(505);
33
34 // Add a legend to the ratio plot
35 rp->GetUpperPad()->cd();
36 TLegend *legend = new TLegend(0.3,0.7,0.7,0.85);
37 legend->AddEntry("h1","First histogram","l");
38 legend->AddEntry("h2","Second histogram","le");
39 legend->Draw();
40}
@ kRed
Definition Rtypes.h:66
R__EXTERN TStyle * gStyle
Definition TStyle.h:433
The Canvas class.
Definition TCanvas.h:23
1-Dim function class
Definition TF1.h:233
virtual void SetParameter(Int_t param, Double_t value)
Definition TF1.h:660
1-D histogram with a double per channel (see TH1 documentation)
Definition TH1.h:669
virtual void FillRandom(const char *fname, Int_t ntimes=5000, TRandom *rng=nullptr)
Fill histogram following distribution in function fname.
Definition TH1.cxx:3519
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
Definition TH1.cxx:8988
This class displays a legend box (TPaveText) containing several legend entries.
Definition TLegend.h:23
TLegendEntry * AddEntry(const TObject *obj, const char *label="", Option_t *option="lpf")
Add a new entry to this legend.
Definition TLegend.cxx:317
void Draw(Option_t *option="") override
Draw this legend with its current attributes.
Definition TLegend.cxx:422
Class for displaying ratios, differences and fit residuals.
Definition TRatioPlot.h:43
void SetOptStat(Int_t stat=1)
The type of information printed in the histogram statistics box can be selected via the parameter mod...
Definition TStyle.cxx:1636
TH1F * h1
Definition legend1.C:5
TF1 * f1
Definition legend1.C:11
constexpr Double_t C()
Velocity of light in .
Definition TMath.h:114