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 | Static Public Member Functions | List of all members
columnar::ColumnarMemoryTest Struct Reference

#include <ColumnarMemoryTest.h>

Inheritance diagram for columnar::ColumnarMemoryTest:
Collaboration diagram for columnar::ColumnarMemoryTest:

Classes

class  ColumnarTestToolHandle
 a handle to a columnar tool for running tests More...
 
struct  ColumnMapType
 

Public Member Functions

 ColumnarMemoryTest ()
 
std::string makeUniqueName ()
 make a unique tool name to be used in unit tests More...
 

Static Public Member Functions

static bool checkMode ()
 check whether we have the right mode More...
 

Detailed Description

Definition at line 24 of file ColumnarMemoryTest.h.

Constructor & Destructor Documentation

◆ ColumnarMemoryTest()

columnar::ColumnarMemoryTest::ColumnarMemoryTest ( )

Definition at line 26 of file ColumnarMemoryTest.cxx.

28  {
29 #ifdef XAOD_STANDALONE
30  static std::once_flag flag;
31  std::call_once (flag, [] ()
32  {
33  // Preload the component factories: Alternately this could be
34  // loaded and executed via a dictionary, but I had some technical
35  // issue with that, and this seems to be working.
37  });
38 #endif
39  }

Member Function Documentation

◆ checkMode()

bool columnar::ColumnarMemoryTest::checkMode ( )
static

check whether we have the right mode

Definition at line 52 of file ColumnarMemoryTest.cxx.

54  {
55  return std::is_same_v<ColumnarModeDefault,ColumnarModeArray>;
56  }

◆ makeUniqueName()

std::string columnar::ColumnarMemoryTest::makeUniqueName ( )

make a unique tool name to be used in unit tests

Definition at line 43 of file ColumnarMemoryTest.cxx.

45  {
46  static std::atomic<unsigned> index = 0;
47  return "UniqueMemoryTestTool" + std::to_string(++index);
48  }

The documentation for this struct was generated from the following files:
index
Definition: index.py:1
CP::preloadComponentFactories
bool preloadComponentFactories()
Definition: ComponentFactoryPreloader.cxx:406
master.flag
bool flag
Definition: master.py:29
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34