Remove support for implicit solvation
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / toppush.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,2015,2016,2018, 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_TOPPUSH_H
39 #define GMX_GMXPREPROCESS_TOPPUSH_H
40
41 #include "gromacs/fileio/warninp.h"
42 #include "gromacs/gmxpreprocess/gpp_atomtype.h"
43 #include "gromacs/gmxpreprocess/gpp_bond_atomtype.h"
44 #include "gromacs/gmxpreprocess/toputil.h"
45
46 typedef struct {
47     int       nr;   /* The number of entries in the list            */
48     int       nra2; /* The total number of entries in a                 */
49     int      *nra;  /* The number of entries in each a array (dim nr)   */
50     int     **a;    /* The atom numbers (dim nr) the length of each element     */
51     /* i is nra[i]                                              */
52 } t_block2;
53
54 void generate_nbparams(int comb, int funct, t_params plist[],
55                        gpp_atomtype_t atype,
56                        warninp_t wi);
57
58 void push_at (struct t_symtab *symtab, gpp_atomtype_t at,
59               t_bond_atomtype bat, char *line, int nb_funct,
60               t_nbparam ***nbparam, t_nbparam ***pair,
61               warninp_t wi);
62
63 void push_bt(directive d, t_params bt[], int nral,
64              gpp_atomtype_t at, t_bond_atomtype bat, char *line,
65              warninp_t wi);
66
67 void push_dihedraltype(directive d, t_params bt[],
68                        t_bond_atomtype bat, char *line,
69                        warninp_t wi);
70
71 void push_cmaptype(directive d, t_params bt[], int nral, gpp_atomtype_t at,
72                    t_bond_atomtype bat, char *line,
73                    warninp_t wi);
74
75 void push_nbt(directive d, t_nbparam **nbt, gpp_atomtype_t atype,
76               char *plines, int nb_funct,
77               warninp_t wi);
78
79 void push_atom(struct t_symtab *symtab,
80                t_block         *cgs,
81                t_atoms         *at,
82                gpp_atomtype_t   atype,
83                char            *line,
84                int             *lastcg,
85                warninp_t        wi);
86
87 void push_bond(directive d, t_params bondtype[], t_params bond[],
88                t_atoms *at, gpp_atomtype_t atype, char *line,
89                gmx_bool bBonded, gmx_bool bGenPairs, real fudgeQQ,
90                gmx_bool bZero, gmx_bool *bWarn_copy_A_B,
91                warninp_t wi);
92
93 void push_cmap(directive d, t_params bondtype[], t_params bond[],
94                t_atoms *at, gpp_atomtype_t atype, char *line,
95                warninp_t wi);
96
97 void push_vsitesn(directive d, t_params bond[],
98                   t_atoms *at, char *line,
99                   warninp_t wi);
100
101 void push_mol(int nrmols, t_molinfo mols[], char *pline,
102               int *whichmol, int *nrcopies,
103               warninp_t wi);
104
105 void push_molt(struct t_symtab *symtab, int *nmol, t_molinfo **mol, char *line,
106                warninp_t wi);
107
108 void init_block2(t_block2 *b2, int natom);
109
110 void done_block2(t_block2 *b2);
111
112 void push_excl(char *line, t_block2 *b2, warninp_t wi);
113
114 void merge_excl(t_blocka *excl, t_block2 *b2, warninp_t wi);
115
116 void b_to_b2(t_blocka *b, t_block2 *b2);
117
118 void b2_to_b(t_block2 *b2, t_blocka *b);
119
120 int add_atomtype_decoupled(struct t_symtab *symtab, gpp_atomtype_t at,
121                            t_nbparam ***nbparam, t_nbparam ***pair);
122 /* Add an atom type with all parameters set to zero (no interactions).
123  * Returns the atom type number.
124  */
125
126 void convert_moltype_couple(t_molinfo *mol, int atomtype_decouple,
127                             real fudgeQQ,
128                             int couple_lam0, int couple_lam1,
129                             gmx_bool bCoupleIntra,
130                             int nb_funct, t_params *nbp,
131                             warninp_t wi);
132 /* Setup mol such that the B-state has no interaction with the rest
133  * of the system, but full interaction with itself.
134  */
135
136 #endif