OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
PyOpalObject.cpp
Go to the documentation of this file.
2
3//using namespace boost::python;
4namespace PyOpal {
5namespace PyOpalObjectNS {
6
7std::map<AttributeType, std::string> attributeName = std::map<AttributeType, std::string>({
8 {DOUBLE, "float"},
9 {STRING, "string"},
10 {BOOL, "bool"},
11 {INT, "int"},
12 {FLOATLIST, "list of floats"}
13});
14
15} // PyElementNS
16} // PyOpal
std::map< AttributeType, std::string > attributeName
Definition: PyOpalObject.cpp:7