Precision fix for rescbt code.
[gromacs.git] / src / gromacs / gmxpreprocess / toppush.h
blobee76fe3f00d2d44baff4f071c29aab0610a6940b
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/utility/real.h"
43 enum class Directive : int;
44 struct gpp_atomtype;
45 struct gpp_bond_atomtype;
46 struct t_atoms;
47 struct t_block;
48 struct t_molinfo;
49 struct t_nbparam;
50 struct t_param;
51 struct t_params;
52 struct PreprocessResidue;
53 struct warninp;
55 namespace gmx
57 struct ExclusionBlocks;
58 } // namespace gmx
60 void generate_nbparams(int comb, int funct, t_params plist[],
61 gpp_atomtype *atype,
62 warninp *wi);
64 void push_at (struct t_symtab *symtab, gpp_atomtype *at,
65 gpp_bond_atomtype *bat, char *line, int nb_funct,
66 t_nbparam ***nbparam, t_nbparam ***pair,
67 warninp *wi);
69 void push_bt(Directive d, t_params bt[], int nral,
70 gpp_atomtype *at, gpp_bond_atomtype *bat, char *line,
71 warninp *wi);
73 void push_dihedraltype(Directive d, t_params bt[],
74 gpp_bond_atomtype *bat, char *line,
75 warninp *wi);
77 void push_cmaptype(Directive d, t_params bt[], int nral, gpp_atomtype *at,
78 gpp_bond_atomtype *bat, char *line,
79 warninp *wi);
81 void push_nbt(Directive d, t_nbparam **nbt, gpp_atomtype *atype,
82 char *plines, int nb_funct,
83 warninp *wi);
85 void push_atom(struct t_symtab *symtab,
86 t_block *cgs,
87 t_atoms *at,
88 gpp_atomtype *atype,
89 char *line,
90 int *lastcg,
91 warninp *wi);
93 void push_bond(Directive d, t_params bondtype[], t_params bond[],
94 t_atoms *at, gpp_atomtype *atype, char *line,
95 bool bBonded, bool bGenPairs, real fudgeQQ,
96 bool bZero, bool *bWarn_copy_A_B,
97 warninp *wi);
99 void push_cmap(Directive d, t_params bondtype[], t_params bond[],
100 t_atoms *at, gpp_atomtype *atype, char *line,
101 warninp *wi);
103 void push_vsitesn(Directive d, t_params bond[],
104 t_atoms *at, char *line,
105 warninp *wi);
107 void push_mol(int nrmols, t_molinfo mols[], char *pline,
108 int *whichmol, int *nrcopies,
109 warninp *wi);
111 void push_molt(struct t_symtab *symtab, int *nmol, t_molinfo **mol, char *line,
112 warninp *wi);
114 void push_excl(char *line, gmx::ExclusionBlocks *b2, warninp *wi);
116 int copy_nbparams(t_nbparam **param, int ftype, t_params *plist, int nr);
118 void free_nbparam(t_nbparam **param, int nr);
120 int add_atomtype_decoupled(struct t_symtab *symtab, gpp_atomtype *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.
126 void convert_moltype_couple(t_molinfo *mol, int atomtype_decouple,
127 real fudgeQQ,
128 int couple_lam0, int couple_lam1,
129 bool bCoupleIntra,
130 int nb_funct, t_params *nbp,
131 warninp *wi);
132 /* Setup mol such that the B-state has no interaction with the rest
133 * of the system, but full interaction with itself.
136 #endif