Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
subpads.cxx File Reference

Detailed Description

This ROOT 7 example demonstrates how to create a ROOT 7 canvas (RCanvas), divide on sub-sub pads and draw histograms there.

/*************************************************************************
* Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#include "ROOT/RCanvas.hxx"
#include "ROOT/RPad.hxx"
#include "ROOT/RStyle.hxx"
#include "TRandom.h"
void subpads()
{
using namespace ROOT::Experimental;
// Create the histogram.
RAxisConfig xaxis(25, 0., 10.);
auto pHist1 = std::make_shared<RH1D>(xaxis);
auto pHist2 = std::make_shared<RH1D>(xaxis);
auto pHist3 = std::make_shared<RH1D>(xaxis);
for (int n = 0; n < 1000; n++) {
pHist1->Fill(gRandom->Gaus(3., 0.8));
pHist2->Fill(gRandom->Gaus(5., 1.));
pHist3->Fill(gRandom->Gaus(7., 1.2));
}
// Create a canvas to be displayed.
auto canvas = RCanvas::Create("Sub-sub pads example");
// Divide canvas on sub-pads
auto subpads = canvas->Divide(2,2);
subpads[0][0]->Draw(pHist1)->line.color = RColor::kRed;
subpads[1][0]->Draw(pHist2)->line.color = RColor::kBlue;
subpads[0][1]->Draw(pHist3)->line.color = RColor::kGreen;
// Divide sub-pad on sub-sub-pads
auto subsubpads = subpads[1][1]->Divide(2,2);
subsubpads[0][0]->Draw(pHist1)->line.color = RColor::kBlue;
subsubpads[1][0]->Draw(pHist2)->line.color = RColor::kGreen;
subsubpads[0][1]->Draw(pHist3)->line.color = RColor::kRed;
"frame {" // select type frame for RFrame
" gridX: true;" // enable grid drawing
" gridY: true;"
" ticksX: 2;" // enable ticks drawing on both sides
" ticksY: 2;"
" x_labels_size: 0.05;" // below 1 is scaling factor for pad height
" y_labels_size: 20;" // just a font size in pixel
" y_labels_color: green;" // and name labels color
"}");
canvas->UseStyle(style);
canvas->SetSize(1200, 600);
canvas->Show();
canvas->ClearOnClose(style);
}
Option_t Option_t style
R__EXTERN TRandom * gRandom
Definition TRandom.h:62
Objects used to configure the different axis types.
static std::shared_ptr< RCanvas > Create(const std::string &title)
Create new canvas instance.
Definition RCanvas.cxx:89
static R__DLLEXPORT constexpr RGB_t kRed
Definition RColor.hxx:191
static R__DLLEXPORT constexpr RGB_t kGreen
Definition RColor.hxx:179
static R__DLLEXPORT constexpr RGB_t kBlue
Definition RColor.hxx:186
static std::shared_ptr< RStyle > Parse(const std::string &css_code)
Parse CSS code and returns std::shared_ptr<RStyle> when successful.
Definition RStyle.cxx:274
const Int_t n
Definition legend1.C:16
Date
2018-03-13
Warning
This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
Author
Sergey Linev s.lin.nosp@m.ev@g.nosp@m.si.de

Definition in file subpads.cxx.