![]() |
ATLAS Offline Software
|
a class that holds the columnar data for a single call to ColumnarToolWrapper More...
#include <ColumnarToolWrapper.h>
Public Member Functions | |
ColumnarToolWrapperData (const ColumnarToolWrapper *val_wrapper) noexcept | |
constructor: wrap the given tool More... | |
template<typename CT > | |
void | setColumn (const std::string &name, std::size_t size, CT *dataPtr) |
set the data for the given column picking up the type via a template More... | |
void | setColumnVoid (const std::string &name, std::size_t size, const void *dataPtr, const std::type_info &type, bool isConst) |
set the data for the given column with the user passing in the type More... | |
void | setColumnNumpy (const std::string &name, std::size_t size, const void *dataPtr, int type, unsigned bits, bool isConst) |
set the data for the given column with the user passing in the type information from numpy More... | |
void | call () |
call the tool More... | |
void | checkColumnsValid () |
check that all columns are valid More... | |
template<typename CT > | |
std::pair< std::size_t, CT * > | getColumn (const std::string &name) |
get the data for the given column picking up the type via a template More... | |
std::pair< std::size_t, const void * > | getColumnVoid (const std::string &name, const std::type_info *type, bool isConst) |
get the data for the given column in a type-erased manner More... | |
void ** | data () noexcept |
the data vector we have assembled More... | |
Private Member Functions | |
void | checkColumn (const std::pair< const std::string, ColumnarToolWrapper::MyColumnInfo > &column) |
Private Attributes | |
const ColumnarToolWrapper * | m_wrapper = nullptr |
std::vector< void * > | m_data |
std::vector< std::size_t > | m_dataSize |
std::vector< bool > | m_columnIsChecked |
std::vector< bool > | m_columnIsFilled |
a class that holds the columnar data for a single call to ColumnarToolWrapper
The idea is that this is a fairly lightweight class that can be instantiated once per call and contain all thread-local information (i.e. the pointers to the user data). For every use of this tool the caller should create a new instance of this class.
The basic usage is something like this:
Definition at line 135 of file ColumnarToolWrapper.h.
|
explicitnoexcept |
constructor: wrap the given tool
Definition at line 111 of file ColumnarToolWrapper.cxx.
void columnar::ColumnarToolWrapperData::call | ( | ) |
call the tool
Definition at line 197 of file ColumnarToolWrapper.cxx.
|
private |
Definition at line 206 of file ColumnarToolWrapper.cxx.
void columnar::ColumnarToolWrapperData::checkColumnsValid | ( | ) |
check that all columns are valid
These members shouldn't be needed for regular users, but it can help in debugging issues with the tool or the wrapper.
Definition at line 188 of file ColumnarToolWrapper.cxx.
|
inlinenoexcept |
|
inline |
get the data for the given column picking up the type via a template
Definition at line 187 of file ColumnarToolWrapper.h.
std::pair< std::size_t, const void * > columnar::ColumnarToolWrapperData::getColumnVoid | ( | const std::string & | name, |
const std::type_info * | type, | ||
bool | isConst | ||
) |
get the data for the given column in a type-erased manner
Definition at line 168 of file ColumnarToolWrapper.cxx.
|
inline |
set the data for the given column picking up the type via a template
Definition at line 149 of file ColumnarToolWrapper.h.
void columnar::ColumnarToolWrapperData::setColumnNumpy | ( | const std::string & | name, |
std::size_t | size, | ||
const void * | dataPtr, | ||
int | type, | ||
unsigned | bits, | ||
bool | isConst | ||
) |
set the data for the given column with the user passing in the type information from numpy
Definition at line 145 of file ColumnarToolWrapper.cxx.
void columnar::ColumnarToolWrapperData::setColumnVoid | ( | const std::string & | name, |
std::size_t | size, | ||
const void * | dataPtr, | ||
const std::type_info & | type, | ||
bool | isConst | ||
) |
set the data for the given column with the user passing in the type
Definition at line 122 of file ColumnarToolWrapper.cxx.
|
private |
Definition at line 215 of file ColumnarToolWrapper.h.
|
private |
Definition at line 216 of file ColumnarToolWrapper.h.
|
private |
Definition at line 213 of file ColumnarToolWrapper.h.
|
private |
Definition at line 214 of file ColumnarToolWrapper.h.
|
private |
Definition at line 211 of file ColumnarToolWrapper.h.