PK added extern C for rmpbc and atomprop
[gromacs.git] / include / grompp.h
bloba6709e86ccdb029cfb7fd0bb1288de2ba845f38b
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.
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.
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.
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.
30 * For more info, check our website at http://www.gromacs.org
32 * And Hey:
33 * Gromacs Runs On Most of All Computer Systems
36 #ifndef _grompp_h
37 #define _grompp_h
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
43 #include <stdio.h>
44 #include "typedefs.h"
45 #include "macros.h"
47 #define MAXSLEN 32
49 typedef struct {
50 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.
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;
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) */
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 */
74 real *cmap; /* Temporary storage of the raw cmap grid data */
75 int ncmap; /* Number of allocated elements in cmap grid*/
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 */
80 } t_params;
82 typedef struct {
83 int nr; /* The number of exclusions */
84 atom_id *e; /* The excluded atoms */
85 } t_excls;
87 typedef struct {
88 char **name;
89 int nrexcl; /* Number of exclusions per atom */
90 bool excl_set; /* Have exclusions been generated? */
91 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;
99 typedef struct {
100 char *name;
101 int nr;
102 } t_mols;
104 #include "gpp_atomtype.h"
106 extern void choose_ff(char *ff,int maxlen);
107 /* Strange place for this function... */
109 extern bool is_int(double x);
110 /* Returns TRUE when x is integer */
112 extern void print_top_comment(FILE *out,const char *filename,const char *title,bool bITP);
114 extern void print_top_header(FILE *out,const char *filename,const char *title,bool bITP,
115 const char *ff,real mHmult);
117 extern void print_top_mols(FILE *out, const char *title, const char *water,
118 int nincl, char **incls,
119 int nmol, t_mols *mols);
121 extern void write_top(FILE *out, char *pr,char *molname,
122 t_atoms *at,int bts[],t_params plist[],t_excls excls[],
123 gpp_atomtype_t atype,int *cgnr, int nrexcl);
124 /* NOTE: nrexcl is not the size of *excl! */
126 typedef enum {
127 d_defaults,
128 d_atomtypes,
129 d_bondtypes,
130 d_constrainttypes,
131 d_pairtypes,
132 d_angletypes,
133 d_dihedraltypes,
134 d_nonbond_params,
135 d_implicit_genborn_params,
136 d_implicit_surface_params,
137 d_cmaptypes,
138 d_moleculetype,
139 d_atoms,
140 d_vsites2,
141 d_vsites3,
142 d_vsites4,
143 d_vsitesn,
144 d_bonds,
145 d_exclusions,
146 d_pairs,
147 d_pairs_nb,
148 d_angles,
149 d_dihedrals,
150 d_constraints,
151 d_settles,
152 d_polarization,
153 d_water_polarization,
154 d_thole_polarization,
155 d_system,
156 d_molecules,
157 d_position_restraints,
158 d_angle_restraints,
159 d_angle_restraints_z,
160 d_distance_restraints,
161 d_orientation_restraints,
162 d_dihedral_restraints,
163 d_cmap,
164 d_maxdir,
165 d_invalid,
166 d_none
167 } directive;
169 static const char *ds[d_maxdir+1] = {
170 "defaults",
171 "atomtypes",
172 "bondtypes",
173 "constrainttypes",
174 "pairtypes",
175 "angletypes",
176 "dihedraltypes",
177 "nonbond_params",
178 "implicit_genborn_params",
179 "implicit_surface_params",
180 "cmaptypes",
181 /* All the directives above can not appear after moleculetype */
182 "moleculetype",
183 "atoms",
184 "virtual_sites2",
185 "virtual_sites3",
186 "virtual_sites4",
187 "virtual_sitesn",
188 "bonds",
189 "exclusions",
190 "pairs",
191 "pairs_nb",
192 "angles",
193 "dihedrals",
194 "constraints",
195 "settles",
196 "polarization",
197 "water_polarization",
198 "thole_polarization",
199 "system",
200 "molecules",
201 "position_restraints",
202 "angle_restraints",
203 "angle_restraints_z",
204 "distance_restraints",
205 "orientation_restraints",
206 "dihedral_restraints",
207 "cmap",
208 "invalid"
211 #endif /* _grompp_h */