.Simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Vector.hpp
1 
9 #ifndef __VECTOR_VECTOR_HPP__
10 #define __VECTOR_VECTOR_HPP__
11 
12 #include <tvmet/Vector.h>
13 
14 using namespace tvmet;
15 using namespace tvmet::element_wise;
16 
17 namespace MDSimulation
18 {
23  typedef tvmet::Vector<double, 3UL> DoubleVector;
24 
29  typedef tvmet::Vector<int, 3UL> IntVector;
30 }
31 
32 #endif /* __VECTOR_H__ */
33 
tvmet::Vector< double, 3UL > DoubleVector
Vector type for representing particle positions and velocities as double precision floating point val...
Definition: Vector.hpp:23
tvmet::Vector< int, 3UL > IntVector
A vector of integer values to hold a particle&#39;s position in the grid of cells.
Definition: Vector.hpp:29