Example of script showing how to divide a canvas into adjacent subpads + axis labels on the top and right side of the pads.
void zones() {
TH2F *h1 =
new TH2F(
"h1",
"test1",10,0,1,20,0,20);
TH2F *h2 =
new TH2F(
"h2",
"test2",10,0,1,20,0,100);
TH2F *h3 =
new TH2F(
"h3",
"test3",10,0,1,20,-1,1);
TH2F *h4 =
new TH2F(
"h4",
"test4",10,0,1,20,0,1000);
}
- Author
- Rene Brun
Definition in file zones.C.