Move part of macros.h to grompp-impl.h
[alexxy/gromacs.git] / src / gromacs / legacyheaders / macros.h
index fb8f022ec08f29c8706e5f13776faf1a80167580..4d7a04763a6b71a606847f30b2da194a6125267a 100644 (file)
 
 /* no extern "C" for this header because it only defines Macros */
 
-/*
- * With the macros below you don't
- * have to use an index if you don't wan't to. You can eg. use
- * angle.C0[23] instead if angle.c[0][23].
- * In a similar fashion, you can use angle.AI[3] instead of
- * angle.a[0][3]
- */
 #ifndef __cplusplus
 #include <stdlib.h>
 
-#define AI  a[0]
-#define AJ  a[1]
-#define AK  a[2]
-#define AL  a[3]
-#define AM  a[4]
-#define C0  c[0]
-#define C1  c[1]
-#define C2  c[2]
-
 #ifndef min
 #define min(a, b) (((a) < (b)) ? (a) : (b) )
 #endif