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,2013,2014,2015, 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 * Declares mdatom data structure.
41 * \ingroup module_mdtypes
43 #ifndef GMX_MDTYPES_MDATOM_H
44 #define GMX_MDTYPES_MDATOM_H
46 #include "gromacs/utility/basedefinitions.h"
47 #include "gromacs/utility/real.h"
49 typedef struct t_mdatoms
{
50 //! Total mass in state A
52 //! Total mass in state B
56 //! Number of atoms in arrays
58 //! Number of elements in arrays
60 //! Number of energy groups
62 //! Do we have multiple center of mass motion removal groups
64 //! Number of perturbed atoms
66 //! Number of atoms for which the mass is perturbed
68 //! Number of atoms for which the charge is perturbed
70 //! Number of atoms for which the type is perturbed
72 //! Do we have orientation restraints
74 //! Atomic mass in A state
76 //! Atomic mass in B state
78 //! Atomic mass in present state
80 //! Inverse atomic mass
82 //! Atomic charge in A state
84 //! Atomic charge in B state
86 //! Dispersion constant C6 in A state
88 //! Dispersion constant C6 in A state
90 //! Van der Waals radius sigma in the A state
92 //! Van der Waals radius sigma in the B state
94 //! Van der Waals radius sigma^3 in the A state
96 //! Van der Waals radius sigma^3 in the B state
98 //! Is this atom perturbed
100 //! Type of atom in the A state
102 //! Type of atom in the B state
105 unsigned short *ptype
;
106 //! Group index for temperature coupling
108 //! Group index for energy matrix
109 unsigned short *cENER
;
110 //! Group index for acceleration
111 unsigned short *cACC
;
112 //! Group index for freezing
113 unsigned short *cFREEZE
;
114 //! Group index for center of mass motion removal
115 unsigned short *cVCM
;
116 //! Group index for user 1
118 //! Group index for user 2
120 //! Group index for orientation restraints
121 unsigned short *cORF
;
124 //! Number of atoms on this processor. TODO is this still used?
126 //! The lambda value used to create the contents of the struct