This type includes all parts of RVariation that do not depend on the callable signature.
Definition at line 39 of file RVariationBase.hxx.
Public Member Functions | |
RVariationBase (const RVariationBase &)=delete | |
RVariationBase (const std::vector< std::string > &colNames, std::string_view variationName, const std::vector< std::string > &variationTags, std::string_view type, const RColumnRegister &colRegister, RLoopManager &lm, const ColumnNames_t &inputColNames) | |
RVariationBase (RVariationBase &&)=default | |
virtual | ~RVariationBase () |
virtual void | FinalizeSlot (unsigned int slot)=0 |
Clean-up operations to be performed at the end of a task. | |
const std::vector< std::string > & | GetColumnNames () const |
virtual const std::type_info & | GetTypeId () const =0 |
std::string | GetTypeName () const |
virtual void * | GetValuePtr (unsigned int slot, const std::string &column, const std::string &variation)=0 |
Return the (type-erased) address of the value of one variation of one column (can be safely cast back to a T*). | |
const std::vector< std::string > & | GetVariationNames () const |
virtual void | InitSlot (TTreeReader *r, unsigned int slot)=0 |
RVariationBase & | operator= (const RVariationBase &)=delete |
RVariationBase & | operator= (RVariationBase &&)=default |
virtual void | Update (unsigned int slot, Long64_t entry)=0 |
Update the value at the address returned by GetValuePtr with the content corresponding to the given entry. | |
Protected Attributes | |
std::vector< std::string > | fColNames |
The names of the varied columns. | |
RColumnRegister | fColumnRegister |
ColumnNames_t | fInputColumns |
ROOT::RVecB | fIsDefine |
The nth flag signals whether the nth input column is a custom column or not. | |
std::vector< Long64_t > | fLastCheckedEntry |
RLoopManager * | fLoopManager |
std::string | fType |
The type of the custom column as a text string. | |
std::vector< std::string > | fVariationNames |
The names of the systematic variation. | |
#include <ROOT/RDF/RVariationBase.hxx>
ROOT::Internal::RDF::RVariationBase::RVariationBase | ( | const std::vector< std::string > & | colNames, |
std::string_view | variationName, | ||
const std::vector< std::string > & | variationTags, | ||
std::string_view | type, | ||
const RColumnRegister & | colRegister, | ||
RLoopManager & | lm, | ||
const ColumnNames_t & | inputColNames ) |
Definition at line 27 of file RVariationBase.cxx.
|
delete |
|
default |
|
virtualdefault |
Clean-up operations to be performed at the end of a task.
Implemented in ROOT::Internal::RDF::RJittedVariation, and ROOT::Internal::RDF::RVariation< F, IsSingleColumn >.
const std::vector< std::string > & ROOT::Internal::RDF::RVariationBase::GetColumnNames | ( | ) | const |
Definition at line 45 of file RVariationBase.cxx.
std::string ROOT::Internal::RDF::RVariationBase::GetTypeName | ( | ) | const |
Definition at line 55 of file RVariationBase.cxx.
|
pure virtual |
Return the (type-erased) address of the value of one variation of one column (can be safely cast back to a T*).
Implemented in ROOT::Internal::RDF::RJittedVariation, and ROOT::Internal::RDF::RVariation< F, IsSingleColumn >.
const std::vector< std::string > & ROOT::Internal::RDF::RVariationBase::GetVariationNames | ( | ) | const |
Definition at line 50 of file RVariationBase.cxx.
|
pure virtual |
|
delete |
|
default |
|
pure virtual |
Update the value at the address returned by GetValuePtr with the content corresponding to the given entry.
Implemented in ROOT::Internal::RDF::RJittedVariation, and ROOT::Internal::RDF::RVariation< F, IsSingleColumn >.
|
protected |
The names of the varied columns.
Definition at line 41 of file RVariationBase.hxx.
|
protected |
Definition at line 45 of file RVariationBase.hxx.
|
protected |
Definition at line 47 of file RVariationBase.hxx.
|
protected |
The nth flag signals whether the nth input column is a custom column or not.
Definition at line 49 of file RVariationBase.hxx.
|
protected |
Definition at line 44 of file RVariationBase.hxx.
|
protected |
Definition at line 46 of file RVariationBase.hxx.
|
protected |
The type of the custom column as a text string.
Definition at line 43 of file RVariationBase.hxx.
|
protected |
The names of the systematic variation.
Definition at line 42 of file RVariationBase.hxx.