Logo ROOT  
Reference Guide
df021_createTGraph.C File Reference

Detailed Description

View in nbviewer Open in SWAN This tutorial shows how to fill a TGraph using the Dataframe.

{
// Create a trivial parabola
auto dd = d.Alias("x", "rdfentry_").Define("y", "x*x");
auto graph = dd.Graph("x", "y");
// This tutorial is ran with multithreading enabled. The order in which points are inserted is not known, so to have a meaningful representation points are sorted.
graph->Sort();
auto c = new TCanvas();
graph->DrawClone("APL");
}
#define d(i)
Definition: RSha256.hxx:102
#define c(i)
Definition: RSha256.hxx:101
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees,...
Definition: RDataFrame.hxx:42
The Canvas class.
Definition: TCanvas.h:27
void EnableImplicitMT(UInt_t numthreads=0)
Enable ROOT's implicit multi-threading for all objects and methods that provide an internal paralleli...
Definition: TROOT.cxx:526
Definition: graph.py:1
Date
July 2018
Author
Enrico Guiraud, Danilo Piparo, Massimo Tumolo

Definition in file df021_createTGraph.C.