Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ntpl005_introspection.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_ntuple
3/// \notebook
4/// Write and read an RNTuple from a user-defined class. Adapted from tv3.C
5/// Illustrates various RNTuple introspection methods.
6///
7/// \macro_image
8/// \macro_code
9///
10/// \date April 2020
11/// \author The ROOT Team
12
13// NOTE: The RNTuple classes are experimental at this point.
14// Functionality, interface, and data format is still subject to changes.
15// Do not use for real data!
16
17// Until C++ runtime modules are universally used, we explicitly load the ntuple library. Otherwise
18// triggering autoloading from the use of templated types would require an exhaustive enumeration
19// of "all" template instances in the LinkDef file.
20R__LOAD_LIBRARY(ROOTNTuple)
21
22#include <ROOT/RNTuple.hxx>
23#include <ROOT/RNTupleModel.hxx>
25
26#include <Compression.h>
27#include <TCanvas.h>
28#include <TH1.h>
29#include <TRandom.h>
30#include <TSystem.h>
31
32#include <cassert>
33
34// Import classes from experimental namespace for the time being
37using RNTupleModel = ROOT::Experimental::RNTupleModel;
38using RNTupleReader = ROOT::Experimental::RNTupleReader;
39using RNTupleWriter = ROOT::Experimental::RNTupleWriter;
40using RNTupleWriteOptions = ROOT::Experimental::RNTupleWriteOptions;
41
42constexpr char const* kNTupleFileName = "ntpl005_introspection.root";
43
44// Store entries of type Vector3 in the ntuple
45class Vector3 {
46private:
47 double fX = 0;
48 double fY = 0;
49 double fZ = 0;
50
51public:
52 double x() const { return fX; }
53 double y() const { return fY; }
54 double z() const { return fZ; }
55
56 void SetXYZ(double x, double y, double z) {
57 fX = x;
58 fY = y;
59 fZ = z;
60 }
61};
62
63
64void Generate()
65{
66 auto model = RNTupleModel::Create();
67 auto fldVector3 = model->MakeField<Vector3>("v3");
68
69 // Explicitly enforce a certain compression algorithm
70 RNTupleWriteOptions options;
72
73 auto ntuple = RNTupleWriter::Recreate(std::move(model), "Vector3", kNTupleFileName, options);
74 TRandom r;
75 for (unsigned int i = 0; i < 500000; ++i) {
76 fldVector3->SetXYZ(r.Gaus(0,1), r.Landau(0,1), r.Gaus(100,10));
77 ntuple->Fill();
78 }
79}
80
81
82void ntpl005_introspection() {
83 Generate();
84
85 auto ntuple = RNTupleReader::Open("Vector3", kNTupleFileName);
86
87 // Display the schema of the ntuple
88 ntuple->PrintInfo();
89
90 // Display information about the storage layout of the data
91 ntuple->PrintInfo(ENTupleInfo::kStorageDetails);
92
93 // Display the first entry; no model was defined, hence we use kCompleteJSON to force showing all fields
94 ntuple->Show(0, ENTupleShowFormat::kCompleteJSON);
95
96 // Collect I/O runtime counters when processing the data set.
97 // Maintaining the counters comes with a small performance overhead, so it has to be explicitly enabled
98 ntuple->EnableMetrics();
99
100 // Plot the y components of vector3
101 TCanvas *c1 = new TCanvas("c1","RNTuple Demo", 10, 10, 600, 800);
102 c1->Divide(1,2);
103 c1->cd(1);
104 TH1F h1("x", "x component of Vector3", 100, -3, 3);
105 {
106 /// We enclose viewX in a scope in order to indicate to the RNTuple when we are not
107 /// anymore interested in v3.fX
108 auto viewX = ntuple->GetView<double>("v3.fX");
109 for (auto i : ntuple->GetEntryRange()) {
110 h1.Fill(viewX(i));
111 }
112 }
113 h1.DrawCopy();
114
115 c1->cd(2);
116 TH1F h2("y", "y component of Vector3", 100, -5, 20);
117 auto viewY = ntuple->GetView<double>("v3.fY");
118 for (auto i : ntuple->GetEntryRange()) {
119 h2.Fill(viewY(i));
120 }
121 h2.DrawCopy();
122
123 // Display the I/O operation statistics performed by the RNTuple reader
124 ntuple->PrintInfo(ENTupleInfo::kMetrics);
125
126 // We read 2 out of the 3 Vector3 members and thus should have requested approximately 2/3 of the file
127 FileStat_t fileStat;
128 auto retval = gSystem->GetPathInfo(kNTupleFileName, fileStat);
129 assert(retval == 0);
130 float fileSize = static_cast<float>(fileStat.fSize);
131 float nbytesRead = ntuple->GetMetrics().GetCounter("RNTupleReader.RPageSourceFile.szReadPayload")->GetValueAsInt() +
132 ntuple->GetMetrics().GetCounter("RNTupleReader.RPageSourceFile.szReadOverhead")->GetValueAsInt();
133
134 std::cout << "File size: " << fileSize / 1024. / 1024. << " MiB" << std::endl;
135 std::cout << "Read from file: " << nbytesRead / 1024. / 1024. << " MiB" << std::endl;
136 std::cout << "Ratio: " << nbytesRead / fileSize << std::endl;
137}
ROOT::R::TRInterface & r
Definition Object.C:4
#define R__LOAD_LIBRARY(LIBRARY)
Definition Rtypes.h:472
R__EXTERN TSystem * gSystem
Definition TSystem.h:559
The RNTupleModel encapulates the schema of an ntuple.
An RNTuple that is used to read data from storage.
Definition RNTuple.hxx:90
Common user-tunable settings for storing ntuples.
An RNTuple that gets filled with entries (data) and writes them to storage.
Definition RNTuple.hxx:213
The Canvas class.
Definition TCanvas.h:23
1-D histogram with a float per channel (see TH1 documentation)}
Definition TH1.h:575
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
Definition TH1.cxx:3350
virtual TH1 * DrawCopy(Option_t *option="", const char *name_postfix="_copy") const
Copy this histogram and Draw in the current pad.
Definition TH1.cxx:3120
This is the base class for the ROOT Random number generators.
Definition TRandom.h:27
int GetPathInfo(const char *path, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime)
Get info about a file: id, size, flags, modification time.
Definition TSystem.cxx:1396
constexpr const char * kNTupleFileName
return c1
Definition legend1.C:41
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
TH1F * h1
Definition legend1.C:5
ENTupleInfo
Listing of the different options that can be printed by RNTupleReader::GetInfo()
Definition RNTuple.hxx:50
ENTupleShowFormat
Listing of the different entry output formats of RNTupleReader::Show()
Definition RNTuple.hxx:59
Long64_t fSize
Definition TSystem.h:130
@ kUseGeneralPurpose
Use the new recommended general-purpose setting; it is a best trade-off between compression ratio/dec...
Definition Compression.h:54