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

Detailed Description

View in nbviewer Open in SWAN
Demonstrate the RNTupleProcessor for vertical compositions (chains) of RNTuples

// NOTE: The RNTupleProcessor and related classes are experimental at this point.
// Functionality and interface are still subject to changes.
#include <TCanvas.h>
#include <TH1F.h>
#include <TRandom.h>
// Import classes from the `Experimental` namespace for the time being.
// Number of events to generate for each ntuple.
constexpr int kNEvents = 10000;
void Write(std::string_view ntupleName, std::string_view fileName)
{
auto fldVpx = model->MakeField<std::vector<float>>("vpx");
auto fldVpy = model->MakeField<std::vector<float>>("vpy");
auto fldVpz = model->MakeField<std::vector<float>>("vpz");
auto fldN = model->MakeField<std::uint64_t>("vn");
auto writer = ROOT::RNTupleWriter::Recreate(std::move(model), ntupleName, fileName);
for (int i = 0; i < kNEvents; ++i) {
fldVpx->clear();
fldVpy->clear();
fldVpz->clear();
*fldN = gRandom->Integer(15);
for (int j = 0; j < *fldN; ++j) {
float px, py, pz;
gRandom->Rannor(px, py);
pz = px * px + py * py;
fldVpx->emplace_back(px);
fldVpy->emplace_back(py);
fldVpz->emplace_back(pz);
}
writer->Fill();
}
}
void Read(const std::vector<RNTupleOpenSpec> &ntuples)
{
auto c = new TCanvas("c", "RNTupleProcessor Example", 200, 10, 700, 500);
TH1F hPx("h", "This is the px distribution", 100, -4, 4);
hPx.SetFillColor(48);
auto ptrPx = model->MakeField<std::vector<float>>("vpx");
// By passing a model to the processor, we can use the pointers to field values created upon model creation during
// processing. When no model is provided, a default model is created based on the first ntuple specified.
// Access to the entry values in this case can be achieved through RNTupleProcessor::GetEntry() or through its
// iterator.
auto processor = RNTupleProcessor::CreateChain(ntuples, std::move(model));
for (const auto &entry : *processor) {
// The RNTupleProcessor provides some additional bookkeeping information. The local entry number is reset each
// a new ntuple in the chain is opened for processing.
if (static_cast<int>(processor->GetCurrentProcessorNumber()) > prevProcessorNumber) {
prevProcessorNumber = processor->GetCurrentProcessorNumber();
std::cout << "Processing `ntuple" << prevProcessorNumber + 1 << "` (" << processor->GetNEntriesProcessed()
<< " total entries processed so far)" << std::endl;
}
// We can use the pointer to the field obtained while creating our model to read the field's data for the current
// entry.
for (auto x : *ptrPx) {
hPx.Fill(x);
}
}
std::cout << "Processed a total of " << processor->GetNEntriesProcessed() << " entries" << std::endl;
hPx.DrawCopy();
}
{
Write("ntuple1", "ntuple1.root");
Write("ntuple2", "ntuple2.root");
Write("ntuple3", "ntuple3.root");
// The ntuples to generate and subsequently process. The model of the first ntuple will be used to construct the
// entry used by the processor.
std::vector<RNTupleOpenSpec> ntuples = {
{"ntuple1", "ntuple1.root"}, {"ntuple2", "ntuple2.root"}, {"ntuple3", "ntuple3.root"}};
Read(ntuples);
}
#define c(i)
Definition RSha256.hxx:101
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
R__EXTERN TRandom * gRandom
Definition TRandom.h:62
Specification of the name and location of an RNTuple, used for creating a new RNTupleProcessor.
Interface for iterating over entries of RNTuples and vertically concatenated RNTuples (chains).
static std::unique_ptr< RNTupleModel > Create()
static std::unique_ptr< RNTupleWriter > Recreate(std::unique_ptr< ROOT::RNTupleModel > model, std::string_view ntupleName, std::string_view storage, const ROOT::RNTupleWriteOptions &options=ROOT::RNTupleWriteOptions())
Creates an RNTupleWriter backed by storage, overwriting it if one with the same URI exists.
The Canvas class.
Definition TCanvas.h:23
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:878
virtual void Rannor(Float_t &a, Float_t &b)
Return 2 numbers distributed following a gaussian with mean=0 and sigma=1.
Definition TRandom.cxx:507
virtual UInt_t Integer(UInt_t imax)
Returns a random integer uniformly distributed on the interval [ 0, imax-1 ].
Definition TRandom.cxx:361
Double_t x[n]
Definition legend1.C:17
Date
April 2024
Author
The ROOT Team

Definition in file ntpl012_processor_chain.C.