Fill a TGraph using RDataFrame. 
 
 
 
void df021_createTGraph()
{
 
 
   
   auto dd = 
d.Alias(
"x", 
"rdfentry_").Define(
"y", 
"x*x");
 
 
   auto graph = dd.Graph("x", "y");
 
   
   graph->Sort();
   graph->DrawClone("APL");
}
ROOT's RDataFrame offers a modern, high-level interface for analysis of data stored in TTree ,...
 
void EnableImplicitMT(UInt_t numthreads=0)
Enable ROOT's implicit multi-threading for all objects and methods that provide an internal paralleli...
 
  
- Date
 - July 2018 
 
- Authors
 - Enrico Guiraud, Danilo Piparo (CERN), Massimo Tumolo (Politecnico di Torino) 
 
Definition in file df021_createTGraph.C.