Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / legacyheaders / types / simple.h
index ce021afa9563acd354f68fe079445e5161a7361c..ec8e23a860a1793dc1b7906a330dbccf41e952b5 100644 (file)
 #ifndef _simple_h
 #define _simple_h
 
-#include "../../utility/basedefinitions.h"
-#include "../../utility/real.h"
-
-#define XX      0                 /* Defines for indexing in */
-#define YY      1                 /* vectors                 */
-#define ZZ      2
-#define DIM     3                 /* Dimension of vectors    */
+#include "gromacs/math/vectypes.h"
+#include "gromacs/utility/basedefinitions.h"
+#include "gromacs/utility/real.h"
 
 typedef int         atom_id;      /* To indicate an atoms id         */
 #define NO_ATID     (atom_id)(~0) /* Use this to indicate invalid atid */
 
-typedef real            rvec[DIM];
-
-typedef double          dvec[DIM];
-
-typedef real            matrix[DIM][DIM];
-
-typedef real            tensor[DIM][DIM];
-
-typedef int             ivec[DIM];
-
-typedef int             imatrix[DIM][DIM];
-
 #endif