OpenMD 3.1
Molecular Dynamics in the Open
|
#include <config.h>
#include <list>
#include <string>
#include <vector>
Go to the source code of this file.
Classes | |
class | OpenMD::GenericData |
@ class GenericData GenericData.hpp "utils/GenericData.hpp" More... | |
class | OpenMD::SimpleTypeData< ElemDataType > |
SimpleTypeData class is a POD repository class. More... | |
class | OpenMD::VectorTypeData< ElemDataType > |
Namespaces | |
namespace | OpenMD |
This basic Periodic Table class was originally taken from the data.cpp file in OpenBabel. | |
Typedefs | |
using | OpenMD::BoolGenericData = SimpleTypeData<bool> |
BoolGenericData is a generic data type contains a bool variable. | |
using | OpenMD::IntGenericData = SimpleTypeData<int> |
IntGenericData is a generic data type contains an integer variable. | |
using | OpenMD::FloatGenericData = SimpleTypeData<float> |
FloatGenericData is a generic data type contains a float variable. | |
using | OpenMD::DoubleGenericData = SimpleTypeData<RealType> |
DoubleGenericData is a generic data type contains a RealType variable. | |
using | OpenMD::StringGenericData = SimpleTypeData<std::string> |
A generic data type contains a std::string variable. | |
using | OpenMD::IntVectorGenericData = VectorTypeData<int> |
A generic data type contains a std::vector<int> variable. | |
using | OpenMD::FloatVectorGenericData = VectorTypeData<float> |
using | OpenMD::DoubleVectorGenericData = VectorTypeData<RealType> |
using | OpenMD::StringVectorGenericData = VectorTypeData<std::string> |
A generic data type contains a std::vector<string> variable. | |