ROOT
Version v6.32
master
v6.34
v6.32
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
v6.04
Reference Guide
▼
ROOT
ROOT Reference Documentation
Tutorials
►
Functional Parts
►
Namespaces
►
All Classes
▼
Files
▼
File List
►
bindings
►
core
►
documentation
►
geom
►
graf2d
►
graf3d
►
gui
►
hist
►
html
►
io
►
main
►
math
►
montecarlo
►
net
►
proof
►
roofit
►
sql
►
tmva
▼
tree
▼
dataframe
▼
inc
▼
ROOT
▼
RDF
ActionHelpers.hxx
►
ColumnReaderUtils.hxx
►
GraphNode.hxx
►
GraphUtils.hxx
►
HistoModels.hxx
►
InterfaceUtils.hxx
►
PyROOTHelpers.hxx
►
RAction.hxx
►
RActionBase.hxx
►
RActionImpl.hxx
►
RColumnReaderBase.hxx
RColumnRegister.hxx
►
RCutFlowReport.hxx
►
RDatasetSpec.hxx
►
RDefine.hxx
►
RDefineBase.hxx
►
RDefinePerSample.hxx
►
RDefineReader.hxx
RDFDescription.hxx
►
RDisplay.hxx
►
RDSColumnReader.hxx
►
RFilter.hxx
►
RFilterBase.hxx
►
RInterface.hxx
►
RInterfaceBase.hxx
►
RJittedAction.hxx
►
RJittedDefine.hxx
►
RJittedFilter.hxx
►
RJittedVariation.hxx
►
RLazyDSImpl.hxx
►
RLoopManager.hxx
►
RMergeableValue.hxx
RMetaData.hxx
►
RNewSampleNotifier.hxx
►
RNodeBase.hxx
►
RRange.hxx
►
RRangeBase.hxx
►
RResultMap.hxx
RSample.hxx
►
RSampleInfo.hxx
►
RTreeColumnReader.hxx
►
RVariation.hxx
►
RVariationBase.hxx
►
RVariationReader.hxx
►
RVariationsDescription.hxx
►
RVariedAction.hxx
►
Utils.hxx
►
RArrowDS.hxx
►
RCsvDS.hxx
►
RDataFrame.hxx
►
RDataSource.hxx
►
RDFHelpers.hxx
►
RLazyDS.hxx
►
RNTupleDS.hxx
►
RResultHandle.hxx
►
RResultPtr.hxx
►
RRootDS.hxx
►
RSnapshotOptions.hxx
►
RSqliteDS.hxx
►
RTrivialDS.hxx
►
RVecDS.hxx
►
TDataFrame.hxx
►
TResultProxy.hxx
►
src
►
ntuple
►
ntupleutil
►
readspeed
►
tree
►
treeplayer
►
treeviewer
►
webviewer
►
tutorials
►
v6-32-00-patches
►
File Members
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
RColumnReaderBase.hxx
Go to the documentation of this file.
1
// Author: Enrico Guiraud CERN 09/2020
2
3
/*************************************************************************
4
* Copyright (C) 1995-2020, Rene Brun and Fons Rademakers. *
5
* All rights reserved. *
6
* *
7
* For the licensing terms see $ROOTSYS/LICENSE. *
8
* For the list of contributors see $ROOTSYS/README/CREDITS. *
9
*************************************************************************/
10
11
#ifndef ROOT_INTERNAL_RDF_RCOLUMNREADERBASE
12
#define ROOT_INTERNAL_RDF_RCOLUMNREADERBASE
13
14
#include <
Rtypes.h
>
15
16
namespace
ROOT
{
17
namespace
Detail {
18
namespace
RDF {
19
20
/**
21
\class ROOT::Internal::RDF::RColumnReaderBase
22
\ingroup dataframe
23
\brief Pure virtual base class for all column reader types
24
25
This pure virtual class provides a common base class for the different column reader types, e.g. RTreeColumnReader and
26
RDSColumnReader.
27
**/
28
class
R__CLING_PTRCHECK(off)
RColumnReaderBase
{
29
public
:
30
virtual
~RColumnReaderBase
() =
default
;
31
32
/// Return the column value for the given entry.
33
/// \tparam T The column type
34
/// \param entry The entry number
35
template
<
typename
T>
36
T &
Get
(
Long64_t
entry
)
37
{
38
return
*
static_cast<
T *
>
(GetImpl(
entry
));
39
}
40
41
private
:
42
virtual
void
*
GetImpl
(
Long64_t
entry
) = 0;
43
};
44
45
}
// namespace RDF
46
}
// namespace Detail
47
}
// namespace ROOT
48
49
#endif
Long64_t
long long Long64_t
Definition
RtypesCore.h:80
Rtypes.h
ROOT::Detail::RDF::RColumnReaderBase
Definition
RColumnReaderBase.hxx:28
ROOT::Detail::RDF::RColumnReaderBase::GetImpl
virtual void * GetImpl(Long64_t entry)=0
ROOT::Detail::RDF::RColumnReaderBase::~RColumnReaderBase
virtual ~RColumnReaderBase()=default
ROOT::Detail::RDF::RColumnReaderBase::Get
T & Get(Long64_t entry)
Return the column value for the given entry.
Definition
RColumnReaderBase.hxx:36
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
ROOT
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition
EExecutionPolicy.hxx:4
tree
dataframe
inc
ROOT
RDF
RColumnReaderBase.hxx
ROOT v6-32 - Reference Guide Generated on Fri Feb 21 2025 14:50:03 (GVA Time) using Doxygen 1.10.0