Add AWH biasing module + tests
[gromacs.git] / src / gromacs / gmxpreprocess / pdb2top.h
blob1a40d1010d76d16394dec105a0457e91a15cfe1f
1 /*
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,2014,2015, 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.
38 #ifndef GMX_GMXPREPROCESS_PDB2TOP_H
39 #define GMX_GMXPREPROCESS_PDB2TOP_H
41 #include "gromacs/gmxpreprocess/gpp_atomtype.h"
42 #include "gromacs/gmxpreprocess/grompp-impl.h"
43 #include "gromacs/gmxpreprocess/hackblock.h"
44 #include "gromacs/gmxpreprocess/toputil.h"
46 /* this *MUST* correspond to array in pdb2top.c */
47 enum {
48 ehisA, ehisB, ehisH, ehis1, ehisNR
50 extern const char *hh[ehisNR];
52 typedef struct {
53 int res1, res2;
54 char *a1, *a2;
55 } t_ssbond;
57 void choose_ff(const char *ffsel,
58 char *forcefield, int ff_maxlen,
59 char *ffdir, int ffdir_maxlen);
60 /* Find force fields in the current and libdirs and choose an ff.
61 * If ffsel!=NULL: search for ffsel.
62 * If ffsel==NULL: interactive selection.
65 void choose_watermodel(const char *wmsel, const char *ffdir,
66 char **watermodel);
67 /* Choose, possibly interactively, which water model to include,
68 * based on the wmsel command line option choice and watermodels.dat
69 * in ffdir.
72 void get_hackblocks_rtp(t_hackblock **hb, t_restp **restp,
73 int nrtp, t_restp rtp[],
74 int nres, t_resinfo *resinfo,
75 int nterpairs,
76 t_hackblock **ntdb, t_hackblock **ctdb,
77 int *rn, int *rc);
78 /* Get the database entries for the nres residues in resinfo
79 * and store them in restp and hb.
82 void match_atomnames_with_rtp(t_restp restp[], t_hackblock hb[],
83 t_atoms *pdba, rvec *x,
84 gmx_bool bVerbose);
85 /* Check if atom in pdba need to be deleted of renamed due to tdb or hdb.
86 * If renaming involves atoms added wrt to the rtp database,
87 * add these atoms to restp.
90 void print_top_comment(FILE *out, const char *filename, const char *ffdir, gmx_bool bITP);
92 void print_top_header(FILE *out, const char *filename, gmx_bool bITP,
93 const char *ffdir, real mHmult);
95 void print_top_mols(FILE *out,
96 const char *title, const char *ffdir, const char *water,
97 int nincl, char **incls,
98 int nmol, t_mols *mols);
100 void write_top(FILE *out, char *pr, char *molname,
101 t_atoms *at, gmx_bool bRTPresname,
102 int bts[], t_params plist[], t_excls excls[],
103 gpp_atomtype_t atype, int *cgnr, int nrexcl);
104 /* NOTE: nrexcl is not the size of *excl! */
107 void pdb2top(FILE *top_file, char *posre_fn, char *molname,
108 t_atoms *atoms, rvec **x,
109 gpp_atomtype_t atype, struct t_symtab *tab,
110 int nrtp, t_restp rtp[],
111 t_restp *restp, t_hackblock *hb,
112 gmx_bool bAllowMissing,
113 gmx_bool bVsites, gmx_bool bVsiteAromatics,
114 const char *ffdir,
115 real mHmult,
116 int nssbonds, t_ssbond ssbonds[],
117 real long_bond_dist, real short_bond_dist,
118 gmx_bool bDeuterate, gmx_bool bChargeGroups, gmx_bool bCmap,
119 gmx_bool bRenumRes, gmx_bool bRTPresname);
120 /* Create a topology ! */
122 void print_sums(t_atoms *atoms, gmx_bool bSystem);
124 #endif