8e0cef6d7e39a5a6ac0f44ae8cd942dc7ae08db5
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / grompp-impl.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, 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.
10  *
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.
15  *
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.
20  *
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.
25  *
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.
33  *
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.
36  */
37
38 #ifndef GMX_GMXPREPROCESS_GROMPP_IMPL_H
39 #define GMX_GMXPREPROCESS_GROMPP_IMPL_H
40
41 #include "typedefs.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 #define MAXSLEN 32
48
49 typedef struct {
50     gmx_bool bSet;              /* Has this combination been set        */
51     real     c[4];              /* The non-bonded parameters            */
52 } t_nbparam;
53 /* The t_nbparam struct is used to temporary store the explicit
54  * non-bonded parameter combinations, which will be copied to t_params.
55  */
56
57 typedef struct {
58     atom_id    a[MAXATOMLIST];   /* The atom list (eg. bonds: particle  */
59     /* i = a[0] (AI), j = a[1] (AJ))    */
60     real       c[MAXFORCEPARAM]; /* Force parameters (eg. b0 = c[0])    */
61     char       s[MAXSLEN];       /* A string (instead of parameters),    *
62                                   * read from the .rtp file in pdb2gmx   */
63 } t_param;
64
65 typedef struct {
66     int          nr;    /* The number of bonds in this record   */
67     int          maxnr; /* The amount of elements in the array  */
68     t_param     *param; /* Array of parameters (dim: nr)        */
69
70     /* CMAP tmp data, there are probably better places for this */
71     int         grid_spacing; /* Cmap grid spacing */
72     int         nc;           /* Number of cmap angles */
73
74     real       *cmap;         /* Temporary storage of the raw cmap grid data */
75     int         ncmap;        /* Number of allocated elements in cmap grid*/
76
77     int        *cmap_types;   /* Store the five atomtypes followed by a number that identifies the type */
78     int         nct;          /* Number of allocated elements in cmap_types */
79
80 } t_params;
81
82 typedef struct {
83     int            nr;          /* The number of exclusions             */
84     atom_id       *e;           /* The excluded atoms                   */
85 } t_excls;
86
87 typedef struct {
88     char            **name;
89     int               nrexcl;       /* Number of exclusions per atom    */
90     gmx_bool          excl_set;     /* Have exclusions been generated?  */
91     gmx_bool          bProcessed;   /* Has the mol been processed           */
92     t_atoms           atoms;        /* Atoms                                */
93     t_block           cgs;          /* Charge groups                        */
94     t_block           mols;         /* Molecules                            */
95     t_blocka          excls;        /* Exclusions                           */
96     t_params          plist[F_NRE]; /* Parameters in old style              */
97 } t_molinfo;
98
99 typedef struct {
100     char *name;
101     int   nr;
102 } t_mols;
103
104 gmx_bool is_int(double x);
105 /* Returns TRUE when x is integer */
106
107 /* Must correspond to strings in topdirs.c */
108 typedef enum {
109     d_defaults,
110     d_atomtypes,
111     d_bondtypes,
112     d_constrainttypes,
113     d_pairtypes,
114     d_angletypes,
115     d_dihedraltypes,
116     d_nonbond_params,
117     d_implicit_genborn_params,
118     d_implicit_surface_params,
119     d_cmaptypes,
120     d_moleculetype,
121     d_atoms,
122     d_vsites2,
123     d_vsites3,
124     d_vsites4,
125     d_vsitesn,
126     d_bonds,
127     d_exclusions,
128     d_pairs,
129     d_pairs_nb,
130     d_angles,
131     d_dihedrals,
132     d_constraints,
133     d_settles,
134     d_polarization,
135     d_water_polarization,
136     d_thole_polarization,
137     d_system,
138     d_molecules,
139     d_position_restraints,
140     d_angle_restraints,
141     d_angle_restraints_z,
142     d_distance_restraints,
143     d_orientation_restraints,
144     d_dihedral_restraints,
145     d_cmap,
146     d_maxdir,
147     d_invalid,
148     d_none
149 } directive;
150
151 #ifdef __cplusplus
152 }
153 #endif
154
155 #endif