2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
48 /* All string arrays are NULL terminated, and therefore have an
49 * extra argument (the +1)
50 * these should correspond to names.c and include/types/enums.h
52 extern const char *epbc_names
[epbcNR
+1];
53 extern const char *etcoupl_names
[etcNR
+1];
54 extern const char *epcoupl_names
[epcNR
+1];
55 extern const char *epcoupltype_names
[epctNR
+1];
56 extern const char *erefscaling_names
[erscNR
+1];
57 extern const char *ecutscheme_names
[ecutsNR
+1];
58 extern const char *ens_names
[ensNR
+1];
59 extern const char *ei_names
[eiNR
+1];
60 extern const char *yesno_names
[BOOL_NR
+1];
61 extern const char *bool_names
[BOOL_NR
+1];
62 extern const char *eintmod_names
[eintmodNR
+1];
63 extern const char *eel_names
[eelNR
+1];
64 extern const char *eewg_names
[eewgNR
+1];
65 extern const char *evdw_names
[evdwNR
+1];
66 extern const char *eljpme_names
[eljpmeNR
+1];
67 extern const char *econstr_names
[econtNR
+1];
68 extern const char *ptype_str
[eptNR
+1];
69 extern const char *egrp_nm
[egNR
+1];
70 extern const char *edisre_names
[edrNR
+1];
71 extern const char *edisreweighting_names
[edrwNR
+1];
72 extern const char *enbf_names
[eNBF_NR
+1];
73 extern const char *ecomb_names
[eCOMB_NR
+1];
74 extern const char *gtypes
[egcNR
+1];
75 extern const char *esimtemp_names
[esimtempNR
+1];
76 extern const char *efep_names
[efepNR
+1];
77 extern const char *efpt_names
[efptNR
+1];
78 extern const char *efpt_singular_names
[efptNR
+1];
79 extern const char *elamstats_names
[elamstatsNR
+1];
80 extern const char *elmcmove_names
[elmcmoveNR
+1];
81 extern const char *elmceq_names
[elmceqNR
+1];
82 extern const char *separate_dhdl_file_names
[esepdhdlfileNR
+1];
83 extern const char *dhdl_derivatives_names
[edhdlderivativesNR
+1];
84 extern const char *esol_names
[esolNR
+1];
85 extern const char *edispc_names
[edispcNR
+1];
86 extern const char *ecm_names
[ecmNR
+1];
87 extern const char *eann_names
[eannNR
+1];
88 extern const char *egb_names
[egbNR
+1];
89 extern const char *eis_names
[eisNR
+1];
90 extern const char *esa_names
[esaNR
+1];
91 extern const char *ewt_names
[ewtNR
+1];
92 extern const char *epull_names
[epullNR
+1];
93 extern const char *epullg_names
[epullgNR
+1];
94 extern const char *erotg_names
[erotgNR
+1];
95 extern const char *erotg_originnames
[erotgNR
+1];
96 extern const char *erotg_fitnames
[erotgFitNR
+1];
97 extern const char *eQMmethod_names
[eQMmethodNR
+1];
98 extern const char *eQMbasis_names
[eQMbasisNR
+1];
99 extern const char *eQMMMscheme_names
[eQMMMschemeNR
+1];
100 extern const char *eMultentOpt_names
[eMultentOptNR
+1];
101 extern const char *eAdresstype_names
[eAdressNR
+1];
102 extern const char *eAdressICtype_names
[eAdressICNR
+1];
103 extern const char *eAdressSITEtype_names
[eAdressSITENR
+1];
104 extern const char *gmx_nblist_geometry_names
[GMX_NBLIST_GEOMETRY_NR
+1];
105 extern const char *gmx_nbkernel_elec_names
[GMX_NBKERNEL_ELEC_NR
+1];
106 extern const char *gmx_nbkernel_vdw_names
[GMX_NBKERNEL_VDW_NR
+1];
108 #define UNDEFINED "UNDEFINED"
109 #define ENUM_NAME(e, max, names) ((((e) < 0) || ((e) >= (max))) ? UNDEFINED : (names)[e])
111 #define EBOOL(e) ENUM_NAME(e, BOOL_NR, bool_names)
112 #define ECUTSCHEME(e) ENUM_NAME(e, ecutsNR, ecutscheme_names)
113 #define ENS(e) ENUM_NAME(e, ensNR, ens_names)
114 #define EI(e) ENUM_NAME(e, eiNR, ei_names)
115 #define EPBC(e) ENUM_NAME(e, epbcNR, epbc_names)
116 #define ETCOUPLTYPE(e) ENUM_NAME(e, etcNR, etcoupl_names)
117 #define EPCOUPLTYPE(e) ENUM_NAME(e, epcNR, epcoupl_names)
118 #define EPCOUPLTYPETYPE(e) ENUM_NAME(e, epctNR, epcoupltype_names)
119 #define EREFSCALINGTYPE(e) ENUM_NAME(e, erscNR, erefscaling_names)
120 #define EBLOCKS(e) ENUM_NAME(e, ebNR, eblock_names)
121 #define EPARAM(e) ENUM_NAME(e, epNR, eparam_names)
122 #define INTMODIFIER(e) ENUM_NAME(e, eintmodNR, eintmod_names)
123 #define EELTYPE(e) ENUM_NAME(e, eelNR, eel_names)
124 #define EVDWTYPE(e) ENUM_NAME(e, evdwNR, evdw_names)
125 #define ECONSTRTYPE(e) ENUM_NAME(e, econtNR, econstr_names)
126 #define EDISRETYPE(e) ENUM_NAME(e, edrNR, edisre_names)
127 #define EDISREWEIGHTING(e) ENUM_NAME(e, edrwNR, edisreweighting_names)
128 #define ENBFNAME(e) ENUM_NAME(e, eNBF_NR, enbf_names)
129 #define ECOMBNAME(e) ENUM_NAME(e, eCOMB_NR, ecomb_names)
130 #define ESIMTEMP(e) ENUM_NAME(e, esimtempNR, esimtemp_names)
131 #define EFEPTYPE(e) ENUM_NAME(e, efepNR, efep_names)
132 #define SEPDHDLFILETYPE(e) ENUM_NAME(e, esepdhdlfileNR, separate_dhdl_file_names)
133 #define DHDLDERIVATIVESTYPE(e) ENUM_NAME(e, edhdlderivativesNR, dhdl_derivatives_names)
134 #define ESOLTYPE(e) ENUM_NAME(e, esolNR, esol_names)
135 #define ENLISTTYPE(e) ENUM_NAME(e, enlistNR, enlist_names)
136 #define EDISPCORR(e) ENUM_NAME(e, edispcNR, edispc_names)
137 #define ECOM(e) ENUM_NAME(e, ecmNR, ecm_names)
138 #define EANNEAL(e) ENUM_NAME(e, eannNR, eann_names)
139 #define EGBALGORITHM(e) ENUM_NAME(e, egbNR, egb_names)
140 #define ESAALGORITHM(e) ENUM_NAME(e, esaNR, esa_names)
141 #define EIMPLICITSOL(e) ENUM_NAME(e, eisNR, eis_names)
142 #define EWALLTYPE(e) ENUM_NAME(e, ewtNR, ewt_names)
143 #define EPULLTYPE(e) ENUM_NAME(e, epullNR, epull_names)
144 #define EPULLGEOM(e) ENUM_NAME(e, epullgNR, epullg_names)
145 #define EROTGEOM(e) ENUM_NAME(e, erotgNR, erotg_names)
146 #define EROTORIGIN(e) ENUM_NAME(e, erotgOriginNR, erotg_originnames)
147 #define EROTFIT(e) ENUM_NAME(e, erotgFitNR, erotg_fitnames)
148 #define EQMMETHOD(e) ENUM_NAME(e, eQMmethodNR, eQMmethod_names)
149 #define EQMBASIS(e) ENUM_NAME(e, eQMbasisNR, eQMbasis_names)
150 #define EQMMMSCHEME(e) ENUM_NAME(e, eQMMMschemeNR, eQMMMscheme_names)
151 #define EMULTENTOPT(e) ENUM_NAME(e, eMultentOptNR, eMultentOpt_names)
152 #define EADRESSTYPE(e) ENUM_NAME(e, eAdressNR, eAdresstype_names)
153 #define EADRESSICTYPE(e) ENUM_NAME(e, eAdressICNR, eAdressICtype_names)
154 #define EADRESSSITETYPE(e) ENUM_NAME(e, eAdressSITENR, eAdressSITEtype_names)
155 #define ELJPMECOMBNAMES(e) ENUM_NAME(e, eljpmeNR, eljpme_names)
161 #endif /* _names_h */