Remove duplicate .nr members from selection structs.
[alexxy/gromacs.git] / src / gromacs / selection / position.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2009,2010,2011,2012,2013, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \file
36  * \brief API for handling positions.
37  *
38  * \author Teemu Murtola <teemu.murtola@gmail.com>
39  * \ingroup module_selection
40  */
41 #ifndef GMX_SELECTION_POSITION_H
42 #define GMX_SELECTION_POSITION_H
43
44 #include "../legacyheaders/types/simple.h"
45
46 #include "indexutil.h"
47
48 /*! \brief
49  * Stores a set of positions together with their origins.
50  */
51 typedef struct gmx_ana_pos_t
52 {
53     //! Returns the number of positions.
54     int count() const { return m.mapb.nr; }
55
56     /*! \brief
57      * Array of positions.
58      */
59     rvec               *x;
60     /*! \brief
61      * Velocities (can be NULL).
62      */
63     rvec               *v;
64     /*! \brief
65      * Forces (can be NULL).
66      */
67     rvec               *f;
68     /*! \brief
69      * Mapping of the current positions to the original group.
70      *
71      * \see gmx_ana_indexmap_t
72      */
73     gmx_ana_indexmap_t  m;
74     /*! \brief
75      * Number of elements allocated for \c x.
76      */
77     int                 nalloc_x;
78 } gmx_ana_pos_t;
79
80 /** Initializes an empty position structure. */
81 void
82 gmx_ana_pos_clear(gmx_ana_pos_t *pos);
83 /** Ensures that enough memory has been allocated to store positions. */
84 void
85 gmx_ana_pos_reserve(gmx_ana_pos_t *pos, int n, int isize);
86 /** Request memory allocation for velocities. */
87 void
88 gmx_ana_pos_reserve_velocities(gmx_ana_pos_t *pos);
89 /** Request memory allocation for forces. */
90 void
91 gmx_ana_pos_reserve_forces(gmx_ana_pos_t *pos);
92 /** Reserves memory for use with gmx_ana_pos_append_init(). */
93 void
94 gmx_ana_pos_reserve_for_append(gmx_ana_pos_t *pos, int n, int isize,
95                                bool bVelocities, bool bForces);
96 /** Initializes a \c gmx_ana_pos_t to represent a constant position. */
97 void
98 gmx_ana_pos_init_const(gmx_ana_pos_t *pos, const rvec x);
99 /** Frees the memory allocated for position storage. */
100 void
101 gmx_ana_pos_deinit(gmx_ana_pos_t *pos);
102 /** Frees the memory allocated for positions. */
103 void
104 gmx_ana_pos_free(gmx_ana_pos_t *pos);
105 /** Copies the evaluated positions to a preallocated data structure. */
106 void
107 gmx_ana_pos_copy(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, bool bFirst);
108
109 /** Sets the number of positions in a position structure. */
110 void
111 gmx_ana_pos_set_nr(gmx_ana_pos_t *pos, int n);
112 /** Empties a position data structure with full initialization. */
113 void
114 gmx_ana_pos_empty_init(gmx_ana_pos_t *pos);
115 /** Empties a position data structure. */
116 void
117 gmx_ana_pos_empty(gmx_ana_pos_t *pos);
118 /** Appends a position to a preallocated data structure with full
119  * initialization. */
120 void
121 gmx_ana_pos_append_init(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, int i);
122 /** Appends a position to a preallocated data structure. */
123 void
124 gmx_ana_pos_append(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, int i, int refid);
125 /** Updates position data structure state after appends. */
126 void
127 gmx_ana_pos_append_finish(gmx_ana_pos_t *pos);
128 void
129 /** Appends atoms from a position into a preallocated index group. */
130 gmx_ana_pos_add_to_group(gmx_ana_index_t *g, gmx_ana_pos_t *src, int i);
131
132 #endif