0faa938e1a66e4aeebc02031fdbeb81a31468043
[alexxy/gromacs.git] / include / general.h
1 /*
2  * $Id$
3  * 
4  *       This source code is part of
5  * 
6  *        G   R   O   M   A   C   S
7  * 
8  * GROningen MAchine for Chemical Simulations
9  * 
10  *               VERSION 2.0
11  * 
12  * Copyright (c) 1991-1999
13  * BIOSON Research Institute, Dept. of Biophysical Chemistry
14  * University of Groningen, The Netherlands
15  * 
16  * Please refer to:
17  * GROMACS: A message-passing parallel molecular dynamics implementation
18  * H.J.C. Berendsen, D. van der Spoel and R. van Drunen
19  * Comp. Phys. Comm. 91, 43-56 (1995)
20  * 
21  * Also check out our WWW page:
22  * http://md.chem.rug.nl/~gmx
23  * or e-mail to:
24  * gromacs@chem.rug.nl
25  * 
26  * And Hey:
27  * Good ROcking Metal Altar for Chronical Sinners
28  */
29 static char *SRCID_general_h = "$Id$";
30
31 #ifdef HAVE_CONFIG_H
32 #include <config.h>
33 #endif
34
35 #ifndef __GENERAL__
36 #define __GENERAL__
37
38 /*------------------------------------------------------------------------
39  *  edition history
40  *------------------------------------------------------------------------
41  *
42  *  version  date    author  description
43  *  ----------------------------------------------------------------------
44  *  1.1      07Dec93 mkr     creation
45  */
46
47 /*------------------------------------------------------------------------
48  *  type definitions
49  *------------------------------------------------------------------------
50  */
51 #define LONG    unsigned int                    /* 32 bits                                              */
52 #define WORD    unsigned short                  /* 16 bits                                              */
53 #define BYTE    unsigned char                   /*  8 bits                                              */
54
55 /*------------------------------------------------------------------------
56  *  constant definitions
57  *------------------------------------------------------------------------
58  */
59 #define FALSE   0
60 #define TRUE    1
61
62 #endif  /* __GENERAL__ */