20 if (
id != colTypeId) {
21 std::string err =
"The type of column \"";
25 err +=
" but a different one has been selected.";
26 throw std::runtime_error(err);
31 std::vector<void *> ret(
fNSlots);
60 std::string
e =
"The dataset does not have column ";
62 throw std::runtime_error(e);
91 chain->GetEntry(firstEntry);
99 chain->SetBranchAddress(colName, &addr,
nullptr, typeClass,
EDataType(0),
true);
105 chain->SetBranchAddress(colName, addr);
124 fChains[slot]->GetEntry(entry);
130 assert(0U ==
fNSlots &&
"Setting the number of slots even if the number of slots is different from zero.");
RRootDS(std::string_view treeName, std::string_view fileNameGlob)
bool SetEntry(unsigned int slot, ULong64_t entry)
Advance the "cursors" returned by GetColumnReaders to the selected entry for a particular slot...
Namespace for new ROOT classes and functions.
const std::vector< std::string > & GetColumnNames() const
Returns a reference to the collection of the dataset's column names.
static TIterCategory End()
RDataFrame MakeRootDataFrame(std::string_view treeName, std::string_view fileNameGlob)
std::vector< double * > fAddressesToFree
virtual Long64_t GetEntries() const
Return the total number of entries in the chain.
std::vector< std::vector< void * > > fBranchAddresses
std::vector< std::string > fListOfBranches
bool HasColumn(std::string_view colName) const
Checks if the dataset has a certain column.
std::string GetTypeName(std::string_view colName) const
Type of a column as a string, e.g.
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees, CSV's and other data formats.
std::string ColumnName2ColumnTypeName(const std::string &colName, unsigned int namespaceID, TTree *tree, RDataSource *ds, bool isCustomColumn, bool vector2tvec)
Return a string containing the type of the given branch.
std::vector< std::pair< ULong64_t, ULong64_t > > GetEntryRanges()
Return ranges of entries to distribute to tasks.
A pseudo container class which is a generator of indices.
std::string fFileNameGlob
unsigned long long ULong64_t
const std::type_info & TypeName2TypeID(const std::string &name)
Return the type_info associated to a name.
basic_string_view< char > string_view
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
Mother of all ROOT objects.
void Initialise()
Convenience method called before starting an event-loop.
typedef void((*Func_t)())
A chain is a collection of files containing TTree objects.
void InitSlot(unsigned int slot, ULong64_t firstEntry)
Convenience method called at the start of the data processing associated to a slot.
Int_t GetEntries() const
Return the number of objects in array (i.e.
std::vector< std::pair< ULong64_t, ULong64_t > > fEntryRanges
void SetNSlots(unsigned int nSlots)
Inform RDataSource of the number of processing slots (i.e.
std::vector< std::unique_ptr< TChain > > fChains
virtual TObjArray * GetListOfBranches()
Return a pointer to the list of branches of the current tree.
std::vector< void * > GetColumnReadersImpl(std::string_view, const std::type_info &)
type-erased vector of pointers to pointers to column values - one per slot
void FinaliseSlot(unsigned int slot)
Convenience method called at the end of the data processing associated to a slot. ...
virtual Int_t Add(TChain *chain)
Add all files referenced by the passed chain to this chain.