Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
df010_trivialDataSource.C File Reference

Detailed Description

View in nbviewer Open in SWAN Use the "trivial data source", an example data source implementation.

This tutorial illustrates how use the RDataFrame in combination with a RDataSource. In this case we use a RTrivialDS, which is nothing more than a simple generator: it does not interface to any existing dataset. The RTrivialDS has a single column, col0, which has value n for entry n. The code for RTrivialDS is available at these links (header and source):

{
auto nEvents = 128U;
auto d_s = ROOT::RDF::MakeTrivialDataFrame(nEvents);
/// Now we have a regular RDataFrame: the ingestion of data is delegated to
/// the RDataSource. At this point everything works as before.
auto h_s = d_s.Define("x", "1./(1. + col0)").Histo1D({"h_s", "h_s", 128, 0, .6}, "x");
/// Now we redo the same with a RDF from scratch and we draw the two histograms
ROOT::RDataFrame d(nEvents);
/// This lambda redoes what the TTrivialDS provides
auto g = []() {
static ULong64_t i = 0;
return i++;
};
auto h = d.Define("col0", g).Define("x", "1./(1. + col0)").Histo1D({"h", "h", 128, 0, .6}, "x");
auto c_s = new TCanvas();
c_s->SetLogy();
h_s->DrawClone();
auto c = new TCanvas();
c->SetLogy();
h->DrawClone();
return 0;
}
#define d(i)
Definition RSha256.hxx:102
#define c(i)
Definition RSha256.hxx:101
#define g(i)
Definition RSha256.hxx:105
#define h(i)
Definition RSha256.hxx:106
unsigned long long ULong64_t
Definition RtypesCore.h:74
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees,...
The Canvas class.
Definition TCanvas.h:23
RInterface< RDFDetail::RLoopManager, RTrivialDS > MakeTrivialDataFrame()
Date
September 2017
Author
Danilo Piparo (CERN)

Definition in file df010_trivialDataSource.C.