Logo ROOT   6.18/05
Reference Guide
draw.cxx File Reference

Detailed Description

/*************************************************************************
* Copyright (C) 1995-2015, 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 "Rtypes.h"
R__LOAD_LIBRARY(libROOTHistDraw);
#include "ROOT/RCanvas.hxx"
#include "ROOT/RColor.hxx"
void draw()
{
using namespace ROOT::Experimental;
// Create the histogram.
RAxisConfig xaxis("x", 10, 0., 1.);
RAxisConfig yaxis("y", {0., 1., 2., 3., 10.});
auto pHist = std::make_shared<RH2D>(xaxis, yaxis);
// Fill a few points.
pHist->Fill({0.01, 1.02});
pHist->Fill({0.54, 3.02});
pHist->Fill({0.98, 1.02});
pHist->Fill({1.90, 1.02});
pHist->Fill({0.75, -0.02});
// Register the histogram with ROOT: now it lives even after draw() ends.
RDirectory::Heap().Add("hist", pHist);
// Create a canvas to be displayed.
auto canvas = RCanvas::Create("Canvas Title");
auto pOpts = canvas->Draw(pHist);
pOpts->BoxLine().SetColor(RColor::kRed);
RH2D other = *pHist;
auto pOptsOther = canvas->Draw(other, *pOpts);
pOptsOther->BoxLine().SetColor(RColor::kBlue).SetWidth(12);
canvas->Show();
}
#define R__LOAD_LIBRARY(LIBRARY)
Definition: Rtypes.h:473
@ kRed
Definition: Rtypes.h:64
@ kBlue
Definition: Rtypes.h:64
RHist< 2, double, RHistStatContent, RHistStatUncertainty > RH2D
Definition: RHist.hxx:291
Date
2015-03-22
Warning
This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
Author
Axel Naumann axel@.nosp@m.cern.nosp@m..ch

Definition in file draw.cxx.