The REntry is a collection of values in an ntuple corresponding to a complete row in the data set.
The entry provides a memory-managed binder for a set of values read from fields in an RNTuple. The memory locations that are associated with values are managed through shared pointers.
Definition at line 55 of file REntry.hxx.
Classes | |
class | RFieldToken |
The field token identifies a (sub)field in this entry. More... | |
Public Types | |
using | ConstIterator_t = decltype(fValues)::const_iterator |
Public Member Functions | |
REntry (const REntry &other)=delete | |
REntry (REntry &&other)=default | |
~REntry ()=default | |
ConstIterator_t | begin () const |
template<typename T > | |
void | BindRawPtr (RFieldToken token, T *rawPtr) |
template<typename T > | |
void | BindRawPtr (std::string_view fieldName, T *rawPtr) |
template<typename T > | |
void | BindValue (RFieldToken token, std::shared_ptr< T > objPtr) |
template<typename T > | |
void | BindValue (std::string_view fieldName, std::shared_ptr< T > objPtr) |
void | EmplaceNewValue (RFieldToken token) |
void | EmplaceNewValue (std::string_view fieldName) |
ConstIterator_t | end () const |
std::uint64_t | GetModelId () const |
template<typename T > | |
std::shared_ptr< T > | GetPtr (RFieldToken token) const |
template<typename T > | |
std::shared_ptr< T > | GetPtr (std::string_view fieldName) const |
std::uint64_t | GetSchemaId () const |
RFieldToken | GetToken (std::string_view fieldName) const |
The ordinal of the (sub)field fieldName; can be used in other methods to address the corresponding value. | |
const std::string & | GetTypeName (RFieldToken token) const |
const std::string & | GetTypeName (std::string_view fieldName) const |
REntry & | operator= (const REntry &other)=delete |
REntry & | operator= (REntry &&other)=default |
Private Member Functions | |
REntry ()=default | |
Creation of entries can be done by the RNTupleModel, the RNTupleReader, or the RNTupleWriter. | |
REntry (std::uint64_t modelId, std::uint64_t schemaId) | |
template<typename T > | |
std::shared_ptr< T > | AddValue (ROOT::RField< T > &field) |
While building the entry, adds a new value for the field and returns the value's shared pointer. | |
void | AddValue (ROOT::RFieldBase::RValue &&value) |
std::size_t | Append () |
void | EnsureMatchingModel (RFieldToken token) const |
template<typename T > | |
void | EnsureMatchingType (RFieldToken token) const |
const std::string & | FindFieldName (RFieldToken token) const |
This function has linear complexity, only use it for more helpful error messages! | |
ROOT::RFieldBase::RValue & | GetValue (RFieldToken token) |
Return the RValue currently bound to the provided field. | |
ROOT::RFieldBase::RValue & | GetValue (std::string_view fieldName) |
void | Read (ROOT::NTupleSize_t index) |
void | UpdateValue (RFieldToken token, ROOT::RFieldBase::RValue &&value) |
Update the RValue for a field in the entry. | |
void | UpdateValue (RFieldToken token, ROOT::RFieldBase::RValue &value) |
Private Attributes | |
std::unordered_map< std::string, std::size_t > | fFieldName2Token |
For fast lookup of token IDs given a (sub)field name present in the entry. | |
std::vector< std::string > | fFieldTypes |
To ensure that the entry is standalone, a copy of all field types. | |
std::uint64_t | fModelId = 0 |
The entry must be linked to a specific model, identified by a model ID. | |
std::uint64_t | fSchemaId = 0 |
The entry and its tokens are also linked to a specific schema, identified by a schema ID. | |
std::vector< ROOT::RFieldBase::RValue > | fValues |
Corresponds to the fields of the linked model. | |
#include <ROOT/REntry.hxx>
using ROOT::REntry::ConstIterator_t = decltype(fValues)::const_iterator |
Definition at line 171 of file REntry.hxx.
|
privatedefault |
Creation of entries can be done by the RNTupleModel, the RNTupleReader, or the RNTupleWriter.
|
inlineexplicitprivate |
Definition at line 93 of file REntry.hxx.
|
default |
|
default |
|
inlineprivate |
While building the entry, adds a new value for the field and returns the value's shared pointer.
Definition at line 104 of file REntry.hxx.
|
inlineprivate |
Definition at line 95 of file REntry.hxx.
|
inlineprivate |
Definition at line 129 of file REntry.hxx.
|
inline |
Definition at line 250 of file REntry.hxx.
|
inline |
Definition at line 212 of file REntry.hxx.
|
inline |
Definition at line 220 of file REntry.hxx.
|
inline |
Definition at line 198 of file REntry.hxx.
|
inline |
Definition at line 206 of file REntry.hxx.
|
inline |
Definition at line 189 of file REntry.hxx.
|
inline |
Definition at line 195 of file REntry.hxx.
|
inline |
Definition at line 251 of file REntry.hxx.
|
inlineprivate |
Definition at line 138 of file REntry.hxx.
|
inlineprivate |
Definition at line 160 of file REntry.hxx.
|
inlineprivate |
This function has linear complexity, only use it for more helpful error messages!
Definition at line 147 of file REntry.hxx.
|
inline |
Definition at line 247 of file REntry.hxx.
|
inline |
Definition at line 226 of file REntry.hxx.
|
inline |
Definition at line 234 of file REntry.hxx.
|
inline |
Definition at line 248 of file REntry.hxx.
|
inline |
The ordinal of the (sub)field fieldName; can be used in other methods to address the corresponding value.
Definition at line 180 of file REntry.hxx.
|
inline |
Definition at line 239 of file REntry.hxx.
|
inline |
Definition at line 245 of file REntry.hxx.
|
inlineprivate |
Return the RValue currently bound to the provided field.
Definition at line 119 of file REntry.hxx.
|
inlineprivate |
Definition at line 120 of file REntry.hxx.
|
inlineprivate |
Definition at line 122 of file REntry.hxx.
|
inlineprivate |
Update the RValue for a field in the entry.
To be used when its underlying ROOT::RFieldBase changes, which typically happens when the page source from which the field values are read changes.
Definition at line 115 of file REntry.hxx.
|
inlineprivate |
Definition at line 116 of file REntry.hxx.
|
friend |
Definition at line 61 of file REntry.hxx.
|
friend |
Definition at line 58 of file REntry.hxx.
|
friend |
Definition at line 62 of file REntry.hxx.
|
friend |
Definition at line 59 of file REntry.hxx.
|
friend |
Definition at line 60 of file REntry.hxx.
|
friend |
Definition at line 56 of file REntry.hxx.
|
friend |
Definition at line 57 of file REntry.hxx.
|
private |
For fast lookup of token IDs given a (sub)field name present in the entry.
Definition at line 87 of file REntry.hxx.
|
private |
To ensure that the entry is standalone, a copy of all field types.
Definition at line 89 of file REntry.hxx.
|
private |
The entry must be linked to a specific model, identified by a model ID.
Definition at line 81 of file REntry.hxx.
|
private |
The entry and its tokens are also linked to a specific schema, identified by a schema ID.
Definition at line 83 of file REntry.hxx.
|
private |
Corresponds to the fields of the linked model.
Definition at line 85 of file REntry.hxx.