/usr/include/gromacs/mtop_util.h is in gromacs-dev 4.6.5-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | /*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 1991-2000, University of Groningen, The Netherlands.
* Copyright (c) 2001-2004, The GROMACS development team,
* check out http://www.gromacs.org for more information.
* Copyright (c) 2012,2013, by the GROMACS development team, led by
* David van der Spoel, Berk Hess, Erik Lindahl, and including many
* others, as listed in the AUTHORS file in the top-level source
* directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
#include "visibility.h"
#include "typedefs.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Should be called after generating or reading mtop,
* to set some compute intesive variables to avoid
* N^2 operations later on.
*/
GMX_LIBGMX_EXPORT
void
gmx_mtop_finalize(gmx_mtop_t *mtop);
/* Returns the total number of charge groups in mtop */
GMX_LIBGMX_EXPORT
int
ncg_mtop(const gmx_mtop_t *mtop);
/* Removes the charge groups, i.e. makes single atom charge groups, in mtop */
GMX_LIBGMX_EXPORT
void gmx_mtop_remove_chargegroups(gmx_mtop_t *mtop);
/* Abstract data type for looking up atoms by global atom number */
typedef struct gmx_mtop_atomlookup *gmx_mtop_atomlookup_t;
/* Initialize atom lookup by global atom number */
GMX_LIBGMX_EXPORT
gmx_mtop_atomlookup_t
gmx_mtop_atomlookup_init(const gmx_mtop_t *mtop);
/* As gmx_mtop_atomlookup_init, but optimized for atoms involved in settle */
GMX_LIBGMX_EXPORT
gmx_mtop_atomlookup_t
gmx_mtop_atomlookup_settle_init(const gmx_mtop_t *mtop);
/* Destroy a gmx_mtop_atomlookup_t data structure */
GMX_LIBGMX_EXPORT
void
gmx_mtop_atomlookup_destroy(gmx_mtop_atomlookup_t alook);
/* Returns a pointer to the t_atom struct belonging to atnr_global.
* This can be an expensive operation, so if possible use
* one of the atom loop constructs below.
*/
GMX_LIBGMX_EXPORT
void
gmx_mtop_atomnr_to_atom(const gmx_mtop_atomlookup_t alook,
int atnr_global,
t_atom **atom);
/* Returns a pointer to the molecule interaction array ilist_mol[F_NRE]
* and the local atom number in the molecule belonging to atnr_global.
*/
GMX_LIBGMX_EXPORT
void
gmx_mtop_atomnr_to_ilist(const gmx_mtop_atomlookup_t alook,
int atnr_global,
t_ilist **ilist_mol, int *atnr_offset);
/* Returns the molecule block index
* and the molecule number in the block
* and the atom number offset for the atom indices in moltype
* belonging to atnr_global.
*/
GMX_LIBGMX_EXPORT
void
gmx_mtop_atomnr_to_molblock_ind(const gmx_mtop_atomlookup_t alook,
int atnr_global,
int *molb, int *molnr, int *atnr_mol);
/* Returns atom name, global resnr and residue name of atom atnr_global */
GMX_LIBGMX_EXPORT
void
gmx_mtop_atominfo_global(const gmx_mtop_t *mtop, int atnr_global,
char **atomname, int *resnr, char **resname);
/* Abstract type for atom loop over all atoms */
typedef struct gmx_mtop_atomloop_all *gmx_mtop_atomloop_all_t;
/* Initialize an atom loop over all atoms in the system.
* The order of the atoms will be as in the state struct.
* Only use this when you really need to loop over all atoms,
* i.e. when you use groups which might differ per molecule,
* otherwise use gmx_mtop_atomloop_block.
*/
GMX_LIBGMX_EXPORT
gmx_mtop_atomloop_all_t
gmx_mtop_atomloop_all_init(const gmx_mtop_t *mtop);
/* Loop to the next atom.
* When not at the end:
* returns TRUE and at_global,
* writes the global atom number in *at_global
* and sets the pointer atom to the t_atom struct of that atom.
* When at the end, destroys aloop and returns FALSE.
* Use as:
* gmx_mtop_atomloop_all_t aloop;
* aloop = gmx_mtop_atomloop_all_init(mtop)
* while (gmx_mtop_atomloop_all_next(aloop,&at_global,&atom)) {
* ...
* }
*/
GMX_LIBGMX_EXPORT
gmx_bool
gmx_mtop_atomloop_all_next(gmx_mtop_atomloop_all_t aloop,
int *at_global, t_atom **atom);
/* Return the atomname, the residue number and residue name
* of the current atom in the loop.
*/
void
gmx_mtop_atomloop_all_names(gmx_mtop_atomloop_all_t aloop,
char **atomname, int *resnr, char **resname);
/* Return the a pointer to the moltype struct of the current atom
* in the loop and the atom number in the molecule.
*/
void
gmx_mtop_atomloop_all_moltype(gmx_mtop_atomloop_all_t aloop,
gmx_moltype_t **moltype, int *at_mol);
/* Abstract type for atom loop over atoms in all molecule blocks */
typedef struct gmx_mtop_atomloop_block *gmx_mtop_atomloop_block_t;
/* Initialize an atom loop over atoms in all molecule blocks the system.
*/
GMX_LIBGMX_EXPORT
gmx_mtop_atomloop_block_t
gmx_mtop_atomloop_block_init(const gmx_mtop_t *mtop);
/* Loop to the next atom.
* When not at the end:
* returns TRUE
* sets the pointer atom to the t_atom struct of that atom
* and return the number of molecules corresponding to this atom.
* When at the end, destroys aloop and returns FALSE.
* Use as:
* gmx_mtop_atomloop_block_t aloop;
* aloop = gmx_mtop_atomloop_block_init(mtop)
* while (gmx_mtop_atomloop_block_next(aloop,&atom,&nmol)) {
* ...
* }
*/
GMX_LIBGMX_EXPORT
gmx_bool
gmx_mtop_atomloop_block_next(gmx_mtop_atomloop_block_t aloop,
t_atom **atom, int *nmol);
/* Abstract type for ilist loop over all ilists */
typedef struct gmx_mtop_ilistloop *gmx_mtop_ilistloop_t;
/* Initialize an ilist loop over all molecule types in the system. */
GMX_LIBGMX_EXPORT
gmx_mtop_ilistloop_t
gmx_mtop_ilistloop_init(const gmx_mtop_t *mtop);
/* Loop to the next molecule,
* When not at the end:
* returns TRUE and a pointer to the next array ilist_mol[F_NRE],
* writes the number of molecules for this ilist in *nmol.
* When at the end, destroys iloop and returns FALSE.
*/
GMX_LIBGMX_EXPORT
gmx_bool
gmx_mtop_ilistloop_next(gmx_mtop_ilistloop_t iloop,
t_ilist **ilist_mol, int *nmol);
/* Abstract type for ilist loop over all ilists of all molecules */
typedef struct gmx_mtop_ilistloop_all *gmx_mtop_ilistloop_all_t;
/* Initialize an ilist loop over all molecule types in the system.
* Only use this when you really need to loop over all molecules,
* i.e. when you use groups which might differ per molecule,
* otherwise use gmx_mtop_ilistloop.
*/
GMX_LIBGMX_EXPORT
gmx_mtop_ilistloop_all_t
gmx_mtop_ilistloop_all_init(const gmx_mtop_t *mtop);
/* Loop to the next molecule,
* When not at the end:
* returns TRUE and a pointer to the next array ilist_mol[F_NRE],
* writes the atom offset which should be added to iatoms in atnr_offset.
* When at the end, destroys iloop and returns FALSE.
*/
GMX_LIBGMX_EXPORT
gmx_bool
gmx_mtop_ilistloop_all_next(gmx_mtop_ilistloop_all_t iloop,
t_ilist **ilist_mol, int *atnr_offset);
/* Returns the total number of interactions in the system of type ftype */
GMX_LIBGMX_EXPORT
int
gmx_mtop_ftype_count(const gmx_mtop_t *mtop, int ftype);
/* Returns a charge group index for the whole system */
GMX_LIBGMX_EXPORT
t_block
gmx_mtop_global_cgs(const gmx_mtop_t *mtop);
/* Returns a single t_atoms struct for the whole system */
GMX_LIBGMX_EXPORT
t_atoms
gmx_mtop_global_atoms(const gmx_mtop_t *mtop);
/* Make all charge groups the size of one atom.
* When bKeepSingleMolCG==TRUE keep charge groups for molecules
* that consist of a single charge group.
*/
void
gmx_mtop_make_atomic_charge_groups(gmx_mtop_t *mtop, gmx_bool bKeepSingleMolCG);
/* Generate a 'local' topology for the whole system.
* When ir!=NULL the free energy interactions will be sorted to the end.
*/
GMX_LIBGMX_EXPORT
gmx_localtop_t *
gmx_mtop_generate_local_top(const gmx_mtop_t *mtop, const t_inputrec *ir);
/* Converts a gmx_mtop_t struct to t_topology.
* All memory relating only to mtop will be freed.
*/
GMX_LIBGMX_EXPORT
t_topology
gmx_mtop_t_to_t_topology(gmx_mtop_t *mtop);
#ifdef __cplusplus
}
#endif
|