added Verlet scheme and NxN non-bonded functionality
[alexxy/gromacs.git] / include / names.h
1 /*
2  * 
3  *                This source code is part of
4  * 
5  *                 G   R   O   M   A   C   S
6  * 
7  *          GROningen MAchine for Chemical Simulations
8  * 
9  *                        VERSION 3.2.0
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2004, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  * 
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  * 
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  * 
30  * For more info, check our website at http://www.gromacs.org
31  * 
32  * And Hey:
33  * Gromacs Runs On Most of All Computer Systems
34  */
35
36 #ifndef _names_h
37 #define _names_h
38
39
40 #include "typedefs.h"
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46 /* All string arrays are NULL terminated, and therefore have an
47  * extra argument (the +1)
48  * these should correspond to names.c and include/types/enums.h
49  */
50 extern const char *epbc_names[epbcNR+1];
51 extern const char *etcoupl_names[etcNR+1];
52 extern const char *epcoupl_names[epcNR+1];
53 extern const char *epcoupltype_names[epctNR+1];
54 extern const char *erefscaling_names[erscNR+1];
55 extern const char *ecutscheme_names[ecutsNR+1];
56 extern const char *ens_names[ensNR+1];
57 extern const char *ei_names[eiNR+1];
58 extern const char *yesno_names[BOOL_NR+1];
59 extern const char *bool_names[BOOL_NR+1];
60 extern const char *eel_names[eelNR+1];
61 extern const char *eewg_names[eewgNR+1];
62 extern const char *evdw_names[evdwNR+1];
63 extern const char *econstr_names[econtNR+1];
64 extern const char *ptype_str[eptNR+1];
65 extern const char *egrp_nm[egNR+1];
66 extern const char *edisre_names[edrNR+1];
67 extern const char *edisreweighting_names[edrwNR+1];
68 extern const char *enbf_names[eNBF_NR+1];
69 extern const char *ecomb_names[eCOMB_NR+1];
70 extern const char *gtypes[egcNR+1];
71 extern const char *esimtemp_names[esimtempNR+1];
72 extern const char *efep_names[efepNR+1];
73 extern const char *efpt_names[efptNR+1];
74 extern const char *elamstats_names[elamstatsNR+1];
75 extern const char *elmcmove_names[elmcmoveNR+1];
76 extern const char *elmceq_names[elmceqNR+1];
77 extern const char *separate_dhdl_file_names[esepdhdlfileNR+1];
78 extern const char *dhdl_derivatives_names[edhdlderivativesNR+1];
79 extern const char *esol_names[esolNR+1];
80 extern const char *enlist_names[enlistNR+1];
81 extern const char *edispc_names[edispcNR+1];
82 extern const char *ecm_names[ecmNR+1];
83 extern const char *eann_names[eannNR+1];
84 extern const char *egb_names[egbNR+1];
85 extern const char *eis_names[eisNR+1];
86 extern const char *esa_names[esaNR+1];
87 extern const char *ewt_names[ewtNR+1];
88 extern const char *epull_names[epullNR+1];
89 extern const char *epullg_names[epullgNR+1];
90 extern const char *erotg_names[erotgNR+1];
91 extern const char *erotg_originnames[erotgNR+1];
92 extern const char *erotg_fitnames[erotgFitNR+1];
93 extern const char *eQMmethod_names[eQMmethodNR+1];
94 extern const char *eQMbasis_names[eQMbasisNR+1];
95 extern const char *eQMMMscheme_names[eQMMMschemeNR+1];
96 extern const char *eMultentOpt_names[eMultentOptNR+1];
97 extern const char *eAdresstype_names[eAdressNR+1];
98 extern const char *eAdressICtype_names[eAdressICNR+1];
99 extern const char *eAdressSITEtype_names[eAdressSITENR+1];
100
101 #define UNDEFINED               "UNDEFINED"
102 #define ENUM_NAME(e,max,names)  ((((e)<0)||((e)>=(max)))?UNDEFINED:(names)[e])
103
104 #define EBOOL(e)       ENUM_NAME(e,BOOL_NR,bool_names)
105 #define ECUTSCHEME(e)  ENUM_NAME(e,ecutsNR,ecutscheme_names)
106 #define ENS(e)         ENUM_NAME(e,ensNR,ens_names)
107 #define EI(e)          ENUM_NAME(e,eiNR,ei_names)
108 #define EPBC(e)        ENUM_NAME(e,epbcNR,epbc_names)
109 #define ETCOUPLTYPE(e) ENUM_NAME(e,etcNR,etcoupl_names)
110 #define EPCOUPLTYPE(e) ENUM_NAME(e,epcNR,epcoupl_names)
111 #define EPCOUPLTYPETYPE(e) ENUM_NAME(e,epctNR,epcoupltype_names)
112 #define EREFSCALINGTYPE(e) ENUM_NAME(e,erscNR,erefscaling_names)
113 #define EBLOCKS(e)     ENUM_NAME(e,ebNR,eblock_names)
114 #define EPARAM(e)      ENUM_NAME(e,epNR,eparam_names)
115 #define EELTYPE(e)     ENUM_NAME(e,eelNR,eel_names)
116 #define EVDWTYPE(e)    ENUM_NAME(e,evdwNR,evdw_names)
117 #define ECONSTRTYPE(e) ENUM_NAME(e,econtNR,econstr_names)
118 #define EDISRETYPE(e)  ENUM_NAME(e,edrNR,edisre_names)
119 #define EDISREWEIGHTING(e)  ENUM_NAME(e,edrwNR,edisreweighting_names)
120 #define ENBFNAME(e)    ENUM_NAME(e,eNBF_NR,enbf_names)
121 #define ECOMBNAME(e)   ENUM_NAME(e,eCOMB_NR,ecomb_names)
122 #define ESIMTEMP(e)    ENUM_NAME(e,esimtempNR,esimtemp_names)
123 #define EFEPTYPE(e)    ENUM_NAME(e,efepNR,efep_names)
124 #define SEPDHDLFILETYPE(e) ENUM_NAME(e,esepdhdlfileNR,separate_dhdl_file_names)
125 #define DHDLDERIVATIVESTYPE(e) ENUM_NAME(e,edhdlderivativesNR,dhdl_derivatives_names)
126 #define ESOLTYPE(e)    ENUM_NAME(e,esolNR,esol_names)
127 #define ENLISTTYPE(e)  ENUM_NAME(e,enlistNR,enlist_names)
128 #define EDISPCORR(e)   ENUM_NAME(e,edispcNR,edispc_names)
129 #define ECOM(e)        ENUM_NAME(e,ecmNR,ecm_names)
130 #define EANNEAL(e)      ENUM_NAME(e,eannNR,eann_names)
131 #define EGBALGORITHM(e) ENUM_NAME(e,egbNR,egb_names)
132 #define ESAALGORITHM(e) ENUM_NAME(e,esaNR,esa_names)
133 #define EIMPLICITSOL(e) ENUM_NAME(e,eisNR,eis_names)
134 #define EWALLTYPE(e)   ENUM_NAME(e,ewtNR,ewt_names)
135 #define EPULLTYPE(e)   ENUM_NAME(e,epullNR,epull_names)
136 #define EPULLGEOM(e)   ENUM_NAME(e,epullgNR,epullg_names)
137 #define EROTGEOM(e)    ENUM_NAME(e,erotgNR,erotg_names)
138 #define EROTORIGIN(e)  ENUM_NAME(e,erotgOriginNR,erotg_originnames)
139 #define EROTFIT(e)     ENUM_NAME(e,erotgFitNR,erotg_fitnames)
140 #define EQMMETHOD(e)   ENUM_NAME(e,eQMmethodNR,eQMmethod_names)
141 #define EQMBASIS(e)    ENUM_NAME(e,eQMbasisNR,eQMbasis_names)
142 #define EQMMMSCHEME(e) ENUM_NAME(e,eQMMMschemeNR,eQMMMscheme_names)
143 #define EMULTENTOPT(e) ENUM_NAME(e,eMultentOptNR,eMultentOpt_names)
144 #define EADRESSTYPE(e) ENUM_NAME(e,eAdressNR,eAdresstype_names)
145 #define EADRESSICTYPE(e) ENUM_NAME(e,eAdressICNR,eAdressICtype_names)
146 #define EADRESSSITETYPE(e) ENUM_NAME(e,eAdressSITENR,eAdressSITEtype_names)
147
148 #ifdef __cplusplus
149 }
150 #endif
151
152 #endif  /* _names_h */