Remove unused functions from gmxpreprocess
[gromacs.git] / src / gromacs / gmxpreprocess / toputil.cpp
blobeadf90247498fe1fe0501b94f9de906654f9b928
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) 2012,2014,2015,2017,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.
37 #include "gmxpre.h"
39 #include "toputil.h"
41 #include <climits>
42 #include <cmath>
43 #include <cstring>
45 #include <algorithm>
47 #include "gromacs/gmxpreprocess/gpp_atomtype.h"
48 #include "gromacs/gmxpreprocess/grompp_impl.h"
49 #include "gromacs/gmxpreprocess/notset.h"
50 #include "gromacs/gmxpreprocess/topdirs.h"
51 #include "gromacs/topology/block.h"
52 #include "gromacs/topology/ifunc.h"
53 #include "gromacs/topology/symtab.h"
54 #include "gromacs/utility/fatalerror.h"
55 #include "gromacs/utility/gmxassert.h"
56 #include "gromacs/utility/smalloc.h"
58 /* UTILITIES */
60 void add_param_to_list(InteractionsOfType *list, const InteractionOfType &b)
62 list->interactionTypes.emplace_back(b);
65 /* PRINTING STRUCTURES */
67 static void print_bt(FILE *out, Directive d, PreprocessingAtomTypes *at,
68 int ftype, int fsubtype, gmx::ArrayRef<const InteractionsOfType> plist,
69 bool bFullDih)
71 /* This dihp is a DIRTY patch because the dih-types do not use
72 * all four atoms to determine the type.
74 const int dihp[2][2] = { { 1, 2 }, { 0, 3 } };
75 int nral, nrfp;
76 bool bDih = false, bSwapParity;
78 const InteractionsOfType *bt = &(plist[ftype]);
80 if (bt->size() == 0)
82 return;
85 int f = 0;
86 switch (ftype)
88 case F_G96ANGLES:
89 f = 1;
90 break;
91 case F_G96BONDS:
92 f = 1;
93 break;
94 case F_MORSE:
95 f = 2;
96 break;
97 case F_CUBICBONDS:
98 f = 3;
99 break;
100 case F_CONNBONDS:
101 f = 4;
102 break;
103 case F_HARMONIC:
104 f = 5;
105 break;
106 case F_CROSS_BOND_ANGLES:
107 f = 2;
108 break;
109 case F_CROSS_BOND_BONDS:
110 f = 3;
111 break;
112 case F_UREY_BRADLEY:
113 f = 4;
114 break;
115 case F_PDIHS:
116 case F_RBDIHS:
117 case F_FOURDIHS:
118 bDih = TRUE;
119 break;
120 case F_IDIHS:
121 f = 1;
122 bDih = TRUE;
123 break;
124 case F_CONSTRNC:
125 f = 1;
126 break;
127 case F_VSITE3FD:
128 f = 1;
129 break;
130 case F_VSITE3FAD:
131 f = 2;
132 break;
133 case F_VSITE3OUT:
134 f = 3;
135 break;
136 case F_VSITE4FDN:
137 f = 1;
138 break;
139 case F_CMAP:
140 f = 1;
141 break;
143 default:
144 bDih = FALSE;
146 if (bFullDih)
148 bDih = FALSE;
150 if (fsubtype)
152 f = fsubtype-1;
155 nral = NRAL(ftype);
156 nrfp = NRFP(ftype);
158 /* header */
159 fprintf(out, "[ %s ]\n", dir2str(d));
160 fprintf(out, "; ");
161 if (!bDih)
163 fprintf (out, "%3s %4s", "ai", "aj");
164 for (int j = 2; (j < nral); j++)
166 fprintf (out, " %3c%c", 'a', 'i'+j);
169 else
171 for (int j = 0; (j < 2); j++)
173 fprintf (out, "%3c%c", 'a', 'i'+dihp[f][j]);
177 fprintf (out, " funct");
178 for (int j = 0; (j < nrfp); j++)
180 fprintf (out, " %12c%1d", 'c', j);
182 fprintf (out, "\n");
184 /* print bondtypes */
185 for (const auto &parm : bt->interactionTypes)
187 bSwapParity = (parm.c0() == NOTSET) && (parm.c1() == -1);
188 gmx::ArrayRef<const int> atoms = parm.atoms();
189 if (!bDih)
191 for (int j = 0; (j < nral); j++)
193 fprintf (out, "%5s ", at->atomNameFromAtomType(atoms[j]));
196 else
198 for (int j = 0; (j < 2); j++)
200 fprintf (out, "%5s ", at->atomNameFromAtomType(atoms[dihp[f][j]]));
203 fprintf (out, "%5d ", bSwapParity ? -f-1 : f+1);
205 if (!parm.interactionTypeName().empty())
207 fprintf(out, " %s", parm.interactionTypeName().c_str());
209 else
211 gmx::ArrayRef<const real> forceParam = parm.forceParam();
212 for (int j = 0; (j < nrfp) && (forceParam[j] != NOTSET); j++)
214 fprintf (out, "%13.6e ", forceParam[j]);
218 fprintf (out, "\n");
220 fprintf (out, "\n");
221 fflush (out);
224 void print_excl(FILE *out, int natoms, t_excls excls[])
226 int i;
227 bool have_excl;
228 int j;
230 have_excl = FALSE;
231 for (i = 0; i < natoms && !have_excl; i++)
233 have_excl = (excls[i].nr > 0);
236 if (have_excl)
238 fprintf (out, "[ %s ]\n", dir2str(Directive::d_exclusions));
239 fprintf (out, "; %4s %s\n", "i", "excluded from i");
240 for (i = 0; i < natoms; i++)
242 if (excls[i].nr > 0)
244 fprintf (out, "%6d ", i+1);
245 for (j = 0; j < excls[i].nr; j++)
247 fprintf (out, " %5d", excls[i].e[j]+1);
249 fprintf (out, "\n");
252 fprintf (out, "\n");
253 fflush(out);
257 static double get_residue_charge(const t_atoms *atoms, int at)
259 int ri;
260 double q;
262 ri = atoms->atom[at].resind;
263 q = 0;
264 while (at < atoms->nr && atoms->atom[at].resind == ri)
266 q += atoms->atom[at].q;
267 at++;
270 return q;
273 void print_atoms(FILE *out, PreprocessingAtomTypes *atype, t_atoms *at, int *cgnr,
274 bool bRTPresname)
276 int i, ri;
277 int tpA, tpB;
278 const char *as;
279 const char *tpnmA, *tpnmB;
280 double qres, qtot;
282 as = dir2str(Directive::d_atoms);
283 fprintf(out, "[ %s ]\n", as);
284 fprintf(out, "; %4s %10s %6s %7s%6s %6s %10s %10s %6s %10s %10s\n",
285 "nr", "type", "resnr", "residue", "atom", "cgnr", "charge", "mass", "typeB", "chargeB", "massB");
287 qtot = 0;
289 if (at->nres)
291 /* if the information is present... */
292 for (i = 0; (i < at->nr); i++)
294 ri = at->atom[i].resind;
295 if ((i == 0 || ri != at->atom[i-1].resind) &&
296 at->resinfo[ri].rtp != nullptr)
298 qres = get_residue_charge(at, i);
299 fprintf(out, "; residue %3d %-3s rtp %-4s q ",
300 at->resinfo[ri].nr,
301 *at->resinfo[ri].name,
302 *at->resinfo[ri].rtp);
303 if (fabs(qres) < 0.001)
305 fprintf(out, " %s", "0.0");
307 else
309 fprintf(out, "%+3.1f", qres);
311 fprintf(out, "\n");
313 tpA = at->atom[i].type;
314 if ((tpnmA = atype->atomNameFromAtomType(tpA)) == nullptr)
316 gmx_fatal(FARGS, "tpA = %d, i= %d in print_atoms", tpA, i);
319 /* This is true by construction, but static analysers don't know */
320 GMX_ASSERT(!bRTPresname || at->resinfo[at->atom[i].resind].rtp, "-rtpres did not have residue name available");
321 fprintf(out, "%6d %10s %6d%c %5s %6s %6d %10g %10g",
322 i+1, tpnmA,
323 at->resinfo[ri].nr,
324 at->resinfo[ri].ic,
325 bRTPresname ?
326 *(at->resinfo[at->atom[i].resind].rtp) :
327 *(at->resinfo[at->atom[i].resind].name),
328 *(at->atomname[i]), cgnr[i],
329 at->atom[i].q, at->atom[i].m);
330 if (PERTURBED(at->atom[i]))
332 tpB = at->atom[i].typeB;
333 if ((tpnmB = atype->atomNameFromAtomType(tpB)) == nullptr)
335 gmx_fatal(FARGS, "tpB = %d, i= %d in print_atoms", tpB, i);
337 fprintf(out, " %6s %10g %10g",
338 tpnmB, at->atom[i].qB, at->atom[i].mB);
340 // Accumulate the total charge to help troubleshoot issues.
341 qtot += static_cast<double>(at->atom[i].q);
342 // Round it to zero if it is close to zero, because
343 // printing -9.34e-5 confuses users.
344 if (fabs(qtot) < 0.0001)
346 qtot = 0;
348 // Write the total charge for the last atom of the system
349 // and/or residue, because generally that's where it is
350 // expected to be an integer.
351 if (i == at->nr-1 || ri != at->atom[i+1].resind)
353 fprintf(out, " ; qtot %.4g\n", qtot);
355 else
357 fputs("\n", out);
361 fprintf(out, "\n");
362 fflush(out);
365 void print_bondeds(FILE *out, int natoms, Directive d,
366 int ftype, int fsubtype, gmx::ArrayRef<const InteractionsOfType> plist)
368 t_symtab stab;
369 t_atom *a;
371 PreprocessingAtomTypes atype;
372 snew(a, 1);
373 open_symtab(&stab);
374 for (int i = 0; (i < natoms); i++)
376 char buf[12];
377 sprintf(buf, "%4d", (i+1));
378 atype.addType(&stab, *a, buf, InteractionOfType({}, {}), 0, 0);
380 print_bt(out, d, &atype, ftype, fsubtype, plist, TRUE);
382 done_symtab(&stab);
383 sfree(a);