![]() |
ATLAS Offline Software
|
a class that wraps an IColumnarTool for use in Python More...
#include <ColumnarToolWrapper.h>
Classes | |
struct | MyColumnInfo |
my cached information for the various columns needed More... | |
Public Member Functions | |
ColumnarToolWrapper (IColumnarTool *val_tool) | |
constructor: wrap the given tool (non-owning) More... | |
ColumnarToolWrapper (std::shared_ptr< IColumnarTool > val_tool) | |
constructor: wrap the given tool (owning) More... | |
ColumnarToolWrapper (const ColumnarToolWrapper &)=delete | |
ColumnarToolWrapper & | operator= (const ColumnarToolWrapper &)=delete |
std::vector< std::string > | getColumnNames () const |
get information on all defined columns More... | |
std::vector< ColumnInfo > | getColumnInfo () const |
Private Attributes | |
const IColumnarTool * | m_tool = nullptr |
the wrapped tool More... | |
std::shared_ptr< const IColumnarTool > | m_toolOwn |
the owning pointer to the tool More... | |
std::unordered_map< std::string, MyColumnInfo > | m_columns |
unsigned | m_numColumns = 0u |
the number of columns that the tool expects (equal to the greatest column index + 1) More... | |
Friends | |
class | ColumnarToolWrapperData |
a class that wraps an IColumnarTool for use in Python
This is not necessarily specific to python, but that is the primary use case. Essentially all it does is provide a way to preload columns by name, check that the columns are are consistent with what the tool expects, and can then call the tool on those columns.
This class only does the meta-data handling, whereas the actual handling of columnar data is done by ColumnarToolWrapperData. Please check its documentation for details.
Definition at line 35 of file ColumnarToolWrapper.h.
|
explicit |
constructor: wrap the given tool (non-owning)
Definition at line 28 of file ColumnarToolWrapper.cxx.
|
explicit |
constructor: wrap the given tool (owning)
Definition at line 102 of file ColumnarToolWrapper.cxx.
|
delete |
std::vector< ColumnInfo > columnar::ColumnarToolWrapper::getColumnInfo | ( | ) | const |
Definition at line 261 of file ColumnarToolWrapper.cxx.
std::vector< std::string > columnar::ColumnarToolWrapper::getColumnNames | ( | ) | const |
get information on all defined columns
This is mostly to make it easy for the caller to know which columns are defined and connect them to the dataframe automatically. You can ask either for the list of column names or the full ColumnInfo
, depending on what you need.
Definition at line 249 of file ColumnarToolWrapper.cxx.
|
delete |
|
friend |
Definition at line 74 of file ColumnarToolWrapper.h.
|
private |
Definition at line 105 of file ColumnarToolWrapper.h.
|
private |
the number of columns that the tool expects (equal to the greatest column index + 1)
Definition at line 110 of file ColumnarToolWrapper.h.
|
private |
the wrapped tool
Definition at line 78 of file ColumnarToolWrapper.h.
|
private |
the owning pointer to the tool
Definition at line 81 of file ColumnarToolWrapper.h.