Add grompp check for usage of "define" field in mdp
[gromacs.git] / src / gromacs / gmxpreprocess / toppush.h
bloba1e8baea18f1dc704c95051f74e28a65d4bb7bd6
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,2016,2018,2019, 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_TOPPUSH_H
39 #define GMX_GMXPREPROCESS_TOPPUSH_H
41 #include "gromacs/fileio/warninp.h"
42 #include "gromacs/gmxpreprocess/gpp_atomtype.h"
43 #include "gromacs/gmxpreprocess/gpp_bond_atomtype.h"
45 enum class Directive : int;
47 namespace gmx
49 struct ExclusionBlocks;
50 } // namespace gmx
52 void generate_nbparams(int comb, int funct, t_params plist[],
53 gpp_atomtype_t atype,
54 warninp_t wi);
56 void push_at (struct t_symtab *symtab, gpp_atomtype_t at,
57 t_bond_atomtype bat, char *line, int nb_funct,
58 t_nbparam ***nbparam, t_nbparam ***pair,
59 warninp_t wi);
61 void push_bt(Directive d, t_params bt[], int nral,
62 gpp_atomtype_t at, t_bond_atomtype bat, char *line,
63 warninp_t wi);
65 void push_dihedraltype(Directive d, t_params bt[],
66 t_bond_atomtype bat, char *line,
67 warninp_t wi);
69 void push_cmaptype(Directive d, t_params bt[], int nral, gpp_atomtype_t at,
70 t_bond_atomtype bat, char *line,
71 warninp_t wi);
73 void push_nbt(Directive d, t_nbparam **nbt, gpp_atomtype_t atype,
74 char *plines, int nb_funct,
75 warninp_t wi);
77 void push_atom(struct t_symtab *symtab,
78 t_block *cgs,
79 t_atoms *at,
80 gpp_atomtype_t atype,
81 char *line,
82 int *lastcg,
83 warninp_t wi);
85 void push_bond(Directive d, t_params bondtype[], t_params bond[],
86 t_atoms *at, gpp_atomtype_t atype, char *line,
87 bool bBonded, bool bGenPairs, real fudgeQQ,
88 bool bZero, bool *bWarn_copy_A_B,
89 warninp_t wi);
91 void push_cmap(Directive d, t_params bondtype[], t_params bond[],
92 t_atoms *at, gpp_atomtype_t atype, char *line,
93 warninp_t wi);
95 void push_vsitesn(Directive d, t_params bond[],
96 t_atoms *at, char *line,
97 warninp_t wi);
99 void push_mol(int nrmols, t_molinfo mols[], char *pline,
100 int *whichmol, int *nrcopies,
101 warninp_t wi);
103 void push_molt(struct t_symtab *symtab, int *nmol, t_molinfo **mol, char *line,
104 warninp_t wi);
106 void push_excl(char *line, gmx::ExclusionBlocks *b2, warninp_t wi);
108 int add_atomtype_decoupled(struct t_symtab *symtab, gpp_atomtype_t at,
109 t_nbparam ***nbparam, t_nbparam ***pair);
110 /* Add an atom type with all parameters set to zero (no interactions).
111 * Returns the atom type number.
114 void convert_moltype_couple(t_molinfo *mol, int atomtype_decouple,
115 real fudgeQQ,
116 int couple_lam0, int couple_lam1,
117 bool bCoupleIntra,
118 int nb_funct, t_params *nbp,
119 warninp_t wi);
120 /* Setup mol such that the B-state has no interaction with the rest
121 * of the system, but full interaction with itself.
124 #endif