Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Classes | Public Member Functions | Private Attributes | Friends | List of all members
columnar::ColumnarToolWrapper Class Referencefinal

a class that wraps an IColumnarTool for use in Python More...

#include <ColumnarToolWrapper.h>

Collaboration diagram for columnar::ColumnarToolWrapper:

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
 
ColumnarToolWrapperoperator= (const ColumnarToolWrapper &)=delete
 
std::vector< std::string > getColumnNames () const
 get information on all defined columns More...
 
std::vector< ColumnInfogetColumnInfo () const
 

Private Attributes

const IColumnarToolm_tool = nullptr
 the wrapped tool More...
 
std::shared_ptr< const IColumnarToolm_toolOwn
 the owning pointer to the tool More...
 
std::unordered_map< std::string, MyColumnInfom_columns
 
unsigned m_numColumns = 0u
 the number of columns that the tool expects (equal to the greatest column index + 1) More...
 

Friends

class ColumnarToolWrapperData
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ ColumnarToolWrapper() [1/3]

columnar::ColumnarToolWrapper::ColumnarToolWrapper ( IColumnarTool val_tool)
explicit

constructor: wrap the given tool (non-owning)

Public Members

Definition at line 28 of file ColumnarToolWrapper.cxx.

30  : m_tool (val_tool)
31  {
32  constexpr unsigned numpySigned = 0;
33  constexpr unsigned numpyUnsigned = 1;
34  constexpr unsigned numpyFloat = 2;
35  std::unordered_map<std::type_index, std::pair<int,unsigned>> numpyTypes;
36  numpyTypes[typeid (float)] = { numpyFloat, sizeof (float) * 8 };
37  numpyTypes[typeid (char)] = { std::is_signed_v<char> ? numpySigned : numpyUnsigned, sizeof (char) * 8 };
38  numpyTypes[typeid (int)] = { numpySigned, sizeof (int) * 8 };
39  numpyTypes[typeid (std::uint8_t)] = { numpyUnsigned, sizeof (std::uint8_t) * 8 };
40  numpyTypes[typeid (std::uint16_t)] = { numpyUnsigned, sizeof (std::uint16_t) * 8 };
41  numpyTypes[typeid (std::uint32_t)] = { numpyUnsigned, sizeof (std::uint32_t) * 8 };
42  numpyTypes[typeid (std::uint64_t)] = { numpyUnsigned, sizeof (std::uint64_t) * 8 };
43 
44 
45  auto toolColumns = m_tool->getColumnInfo();
46  unsigned nextIndex = 1u;
47  for (auto& column : toolColumns)
48  {
49  MyColumnInfo myinfo;
50  myinfo.index = nextIndex++;
51  val_tool->setColumnIndex (column.name, myinfo.index);
52  myinfo.type = column.type;
53  switch (column.accessMode)
54  {
56  myinfo.isConst = true;
57  break;
59  myinfo.isConst = false;
60  break;
62  myinfo.isConst = false;
63  break;
64  }
65  for (unsigned dim : column.fixedDimensions)
66  myinfo.fixedDimensions *= dim;
67  myinfo.isOffset = column.isOffset;
68  myinfo.isOptional = column.isOptional;
69 
70  if (auto iter = numpyTypes.find (*column.type); iter != numpyTypes.end())
71  {
72  myinfo.numpyType = iter->second.first;
73  myinfo.numpyBits = iter->second.second;
74  }
75  const auto infoIdx = myinfo.index;
76  auto [iter, success] = m_columns.emplace (column.name, std::move (myinfo));
77  if (!success)
78  throw std::runtime_error ("column name already registered: " + column.name);
79 
80  if (m_numColumns <= infoIdx)
81  m_numColumns = infoIdx + 1;
82  }
83 
84  for (auto& column : toolColumns)
85  {
86  if (!column.offsetName.empty())
87  {
88  auto offsetIter = m_columns.find (column.offsetName);
89  if (offsetIter == m_columns.end())
90  throw std::runtime_error ("offset column name not found: " + column.offsetName);
91  if (*offsetIter->second.type != typeid (ColumnarOffsetType))
92  throw std::runtime_error ("offset column has wrong type: " + column.offsetName);
93  if (!offsetIter->second.isOffset)
94  throw std::runtime_error ("offset column is not registered as offset: " + column.offsetName);
95  m_columns.at (column.name).offsets = &*offsetIter;
96  }
97  }
98  }

◆ ColumnarToolWrapper() [2/3]

columnar::ColumnarToolWrapper::ColumnarToolWrapper ( std::shared_ptr< IColumnarTool val_tool)
explicit

constructor: wrap the given tool (owning)

Definition at line 102 of file ColumnarToolWrapper.cxx.

104  : ColumnarToolWrapper (val_tool.get())
105  {
106  m_toolOwn = std::move (val_tool);
107  }

◆ ColumnarToolWrapper() [3/3]

columnar::ColumnarToolWrapper::ColumnarToolWrapper ( const ColumnarToolWrapper )
delete

Member Function Documentation

◆ getColumnInfo()

std::vector< ColumnInfo > columnar::ColumnarToolWrapper::getColumnInfo ( ) const

Definition at line 261 of file ColumnarToolWrapper.cxx.

263  {
264  return m_tool->getColumnInfo();
265  }

◆ getColumnNames()

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.

251  {
252  std::vector<std::string> result;
253  for (auto& column : m_columns)
254  result.push_back (column.first);
255  std::sort (result.begin(), result.end());
256  return result;
257  }

◆ operator=()

ColumnarToolWrapper& columnar::ColumnarToolWrapper::operator= ( const ColumnarToolWrapper )
delete

Friends And Related Function Documentation

◆ ColumnarToolWrapperData

friend class ColumnarToolWrapperData
friend

Private Members

Definition at line 74 of file ColumnarToolWrapper.h.

Member Data Documentation

◆ m_columns

std::unordered_map<std::string,MyColumnInfo> columnar::ColumnarToolWrapper::m_columns
private

Definition at line 105 of file ColumnarToolWrapper.h.

◆ m_numColumns

unsigned columnar::ColumnarToolWrapper::m_numColumns = 0u
private

the number of columns that the tool expects (equal to the greatest column index + 1)

Definition at line 110 of file ColumnarToolWrapper.h.

◆ m_tool

const IColumnarTool* columnar::ColumnarToolWrapper::m_tool = nullptr
private

the wrapped tool

Definition at line 78 of file ColumnarToolWrapper.h.

◆ m_toolOwn

std::shared_ptr<const IColumnarTool> columnar::ColumnarToolWrapper::m_toolOwn
private

the owning pointer to the tool

Definition at line 81 of file ColumnarToolWrapper.h.


The documentation for this class was generated from the following files:
columnar::ColumnAccessMode::input
@ input
an input column
yodamerge_tmp.dim
dim
Definition: yodamerge_tmp.py:239
get_generator_info.result
result
Definition: get_generator_info.py:21
xAOD::uint8_t
uint8_t
Definition: Muon_v1.cxx:557
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
columnar::ColumnarToolWrapper::m_toolOwn
std::shared_ptr< const IColumnarTool > m_toolOwn
the owning pointer to the tool
Definition: ColumnarToolWrapper.h:81
xAOD::char
char
Definition: TrigDecision_v1.cxx:38
DeMoUpdate.column
dictionary column
Definition: DeMoUpdate.py:1110
Trk::u
@ u
Enums for curvilinear frames.
Definition: ParamDefs.h:77
columnar::ColumnAccessMode::output
@ output
an output column
xAOD::uint16_t
setWord1 uint16_t
Definition: eFexEMRoI_v1.cxx:93
columnar::IColumnarTool::getColumnInfo
virtual std::vector< ColumnInfo > getColumnInfo() const =0
the meta-information for the columns
python.LArMinBiasAlgConfig.int
int
Definition: LArMinBiasAlgConfig.py:59
columnar::ColumnarToolWrapper::ColumnarToolWrapper
ColumnarToolWrapper(IColumnarTool *val_tool)
constructor: wrap the given tool (non-owning)
Definition: ColumnarToolWrapper.cxx:29
xAOD::uint64_t
uint64_t
Definition: EventInfo_v1.cxx:123
columnar::ColumnAccessMode::update
@ update
an updateable column
columnar::ColumnarToolWrapper::m_tool
const IColumnarTool * m_tool
the wrapped tool
Definition: ColumnarToolWrapper.h:78
columnar::ColumnarToolWrapper::m_columns
std::unordered_map< std::string, MyColumnInfo > m_columns
Definition: ColumnarToolWrapper.h:105
columnar::ColumnarToolWrapper::m_numColumns
unsigned m_numColumns
the number of columns that the tool expects (equal to the greatest column index + 1)
Definition: ColumnarToolWrapper.h:110
std::sort
void sort(typename std::reverse_iterator< DataModel_detail::iterator< DVL > > beg, typename std::reverse_iterator< DataModel_detail::iterator< DVL > > end, const Compare &comp)
Specialization of sort for DataVector/List.
Definition: DVL_algorithms.h:623
columnar::ColumnarOffsetType
std::size_t ColumnarOffsetType
the type used for the size and offsets in the columnar data
Definition: IColumnarTool.h:20
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65