Loading [MathJax]/extensions/tex2jax.js
Logo ROOT  
Reference Guide
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
draw_v6.cxx
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_v7
3///
4/// \macro_code
5///
6/// \date 2017-06-02
7/// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback
8/// is welcome!
9/// \author Axel Naumann <axel@cern.ch>
10
11/*************************************************************************
12 * Copyright (C) 1995-2017, Rene Brun and Fons Rademakers. *
13 * All rights reserved. *
14 * *
15 * For the licensing terms see $ROOTSYS/LICENSE. *
16 * For the list of contributors see $ROOTSYS/README/CREDITS. *
17 *************************************************************************/
18
20#include <ROOT/RCanvas.hxx>
21#include <TGraph.h>
22
23#include <iostream>
24
25// Show how to display v6 objects in a v7 RCanvas.
26
27void draw_v6()
28{
29 using namespace ROOT::Experimental;
30
31 static constexpr int npoints = 10;
32 double x[npoints] = { 0., 1., 2., 3., 4., 5., 6., 7., 8., 9. };
33 double y[npoints] = { .1, .2, .3, .4, .3, .2, .1, .2, .3, .4 };
34 auto gr = std::make_shared<TGraph>(npoints, x, y);
35 auto canvas = RCanvas::Create("v7 RCanvas showing a v6 TGraph");
36 canvas->Draw<RObjectDrawable>(gr, "AL");
37
38 // canvas->Show("opera"); // one could specify program name which should show canvas (like chromium or firefox)
39 // canvas->Show("/usr/bin/chromium --app=$url &"); // one could use $url parameter, which replaced with canvas URL
40
41 canvas->Show(); // new window in default browser should popup and async update will be triggered
42
43 // synchronous, wait until painting is finished
44 canvas->Update(false,
45 [](bool res) { std::cout << "First Update done = " << (res ? "true" : "false") << std::endl; });
46
47 canvas->Modified(); // invalidate canvas and force repainting with next Update()
48
49 // call Update again, should return immediately if canvas was not modified
50 canvas->Update(false,
51 [](bool res) { std::cout << "Second Update done = " << (res ? "true" : "false") << std::endl; });
52
53 // request to create PNG file in asynchronous mode and specify lambda function as callback
54 // when request processed by the client, callback invoked with result value
55 // canvas->SaveAs("draw.png", true,
56 // [](bool res) { std::cout << "Producing PNG done res = " << (res ? "true" : "false") << std::endl; });
57
58 // this function executed in synchronous mode (async = false is default),
59 // previous file saving will be completed at this point as well
60 // canvas->SaveAs("draw.svg"); // synchronous
61}
Provides v7 drawing facilities for TObject types (TGraph etc).
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17
TGraphErrors * gr
Definition: legend1.C:25