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) 2011,2014,2015,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 /*! \libinternal \file
39 * Declares PreprocessingAtomType.
41 * \author David van der Spoel <david.vanderspoel@icm.uu.se>
42 * \author Paul Bauer <paul.bauer.q@gmail.com>
44 * \ingroup module_preprocessing
46 #ifndef GMX_GMXPREPROCESS_GPP_ATOMTYPE_H
47 #define GMX_GMXPREPROCESS_GPP_ATOMTYPE_H
51 #include "gromacs/utility/arrayref.h"
52 #include "gromacs/utility/classhelpers.h"
53 #include "gromacs/utility/real.h"
58 class InteractionOfType
;
59 struct InteractionsOfType
;
62 /*! \libinternal \brief
63 * Storage of all atom types used during preprocessing of a simulation
66 class PreprocessingAtomTypes
69 PreprocessingAtomTypes();
71 PreprocessingAtomTypes(PreprocessingAtomTypes
&&old
) noexcept
;
72 //! Move assignment constructor.
73 PreprocessingAtomTypes
&operator=(PreprocessingAtomTypes
&&old
) noexcept
;
75 ~PreprocessingAtomTypes();
78 * Get atom type index for atom type name if present in the database, or NOTSET.
80 * \todo The code should be changed to instead use a gmx::compat version
81 * of std::optional to return an iterator to the element being searched,
82 * or an empty optional construct if the entry has not been found.
84 * \param[in] str Input string to search type for.
85 * \returns Atomtype as integer.
87 int atomTypeFromName(const std::string
&str
) const;
89 //! Get number of defined atom types.
93 * Get name of atom from internal atom type number.
95 * \param[in] nt Internal number of atom type.
96 * \returns The type name.
98 const char *atomNameFromAtomType(int nt
) const;
101 * Get normal mass of atom from internal atom type number.
103 * \param[in] nt Internal number of atom type.
104 * \returns The mass for the atom or NOTSET.
106 real
atomMassFromAtomType(int nt
) const;
109 * Get normal charge of atom from internal atom type number.
111 * \param[in] nt Internal number of atom type.
112 * \returns The charge for the atom or NOTSET.
114 real
atomChargeFromAtomType(int nt
) const;
117 * Get particle type for atom type \p nt
119 * \param[in] nt Internal number of atom type.
120 * \returns The particle type or NOTSET.
122 int atomParticleTypeFromAtomType(int nt
) const;
125 * Get bond atom parameter of atom from internal atom type number.
127 * \param[in] nt Internal number of atom type.
128 * \returns The bond atom parameter or NOTSET.
130 int bondAtomTypeFromAtomType(int nt
) const;
133 * Get atomic number of atom from internal atom type number.
135 * \param[in] nt Internal number of atom type.
136 * \returns The atomic number type or NOTSET.
138 int atomNumberFromAtomType(int nt
) const;
141 * Get the value of \p param of type \p nt.
143 * \param[in] param The parameter value to find.
144 * \param[in] nt The number of the type.
145 * \returns The value of the parameter or NOTSET.
147 real
atomNonBondedParamFromAtomType(int nt
, int param
) const;
150 * If a value is within the range of the current types or not.
152 * \param[in] nt Value to check.
153 * \returns True if value is in range.
155 bool isSet(int nt
) const;
158 * Print data to file.
160 * \param[in] out File pointer.
162 void printTypes(FILE *out
);
165 * Set the values of an existing atom type \p nt.
167 * \param[in] nt Type that should be set.
168 * \param[in] tab Symbol table.
169 * \param[in] a Atom information.
170 * \param[in] name Atom name.
171 * \param[in] nb Nonbonded parameters.
172 * \param[in] bondAtomType What kind of bonded interactions are there.
173 * \param[in] atomNumber Atomic number of the entry.
174 * \returns Number of the type set or NOTSET
179 const std::string
&name
,
180 const InteractionOfType
&nb
,
185 * Add new atom type to database.
187 * \param[in] tab Symbol table.
188 * \param[in] a Atom information.
189 * \param[in] name Atom name.
190 * \param[in] nb Nonbonded parameters.
191 * \param[in] bondAtomType What kind of bonded interactions are there.
192 * \param[in] atomNumber Atomic number of the entry.
193 * \returns Number of entries in database.
195 int addType(t_symtab
*tab
,
197 const std::string
&name
,
198 const InteractionOfType
&nb
,
203 * Renumber existing atom type entries.
205 * \param[in] plist List of parameters.
206 * \param[in] mtop Global topology.
207 * \param[inout] wallAtomType Atom types of wall atoms, which may also be renumbered
208 * \param[in] verbose If we want to print additional info.
210 void renumberTypes(gmx::ArrayRef
<InteractionsOfType
> plist
,
216 * Copy information to other structure.
218 * \param[inout] atypes Other datastructure to copy to.
220 void copyTot_atomtypes(t_atomtypes
*atypes
) const;
223 //! Pimpl that holds the data.
224 gmx::PrivateImplPointer
<Impl
> impl_
;