Display two histograms and their ratio.
This program illustrates how to plot two histograms and their ratio on the same canvas. Original macro by Olivier Couet.
from ROOT import TCanvas, TColor, TGaxis, TH1F, TPad
from ROOT import kBlack, kBlue, kRed
h1 =
TH1F(
"h1", (
"Two gaussian plots and their ratio; x title; h1 and h2"
" histograms"), 100, -5, 5)
return h1
h2 =
TH1F(
"h2",
"h2", 100, -5, 5)
return h2
return h3
c =
TCanvas(
"c",
"canvas", 800, 800)
pad1 =
TPad(
"pad1",
"pad1", 0, 0.3, 1, 1.0)
pad2 =
TPad(
"pad2",
"pad2", 0, 0.05, 1, 0.3)
return c, pad1, pad2
axis =
TGaxis(-5, 20, -5, 220, 20, 220, 510,
"")
if __name__ == "__main__":
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
1-D histogram with a float per channel (see TH1 documentation)
The most important graphics class in the ROOT system.
- Author
- Michael Moran
Definition in file ratioplot.py.