cfe2e93189e7cfcbabf6c7739e1c57830cf06b8e
[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,2014, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source 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 "../math/vectypes.h"
45
46 #include "indexutil.h"
47
48 /*! \brief
49  * Stores a set of positions together with their origins.
50  */
51 struct gmx_ana_pos_t
52 {
53     //! Initializes an empty position structure.
54     gmx_ana_pos_t();
55     ~gmx_ana_pos_t();
56
57     //! Returns the number of positions.
58     int count() const { return m.mapb.nr; }
59
60     /*! \brief
61      * Array of positions.
62      */
63     rvec               *x;
64     /*! \brief
65      * Velocities (can be NULL).
66      */
67     rvec               *v;
68     /*! \brief
69      * Forces (can be NULL).
70      */
71     rvec               *f;
72     /*! \brief
73      * Mapping of the current positions to the original group.
74      *
75      * \see gmx_ana_indexmap_t
76      */
77     gmx_ana_indexmap_t  m;
78     /*! \brief
79      * Number of elements allocated for \c x.
80      */
81     int                 nalloc_x;
82 };
83
84 /** Ensures that enough memory has been allocated to store positions. */
85 void
86 gmx_ana_pos_reserve(gmx_ana_pos_t *pos, int n, int isize);
87 /** Request memory allocation for velocities. */
88 void
89 gmx_ana_pos_reserve_velocities(gmx_ana_pos_t *pos);
90 /** Request memory allocation for forces. */
91 void
92 gmx_ana_pos_reserve_forces(gmx_ana_pos_t *pos);
93 /** Reserves memory for use with gmx_ana_pos_append_init(). */
94 void
95 gmx_ana_pos_reserve_for_append(gmx_ana_pos_t *pos, int n, int isize,
96                                bool bVelocities, bool bForces);
97 /** Initializes a \c gmx_ana_pos_t to represent a constant position. */
98 void
99 gmx_ana_pos_init_const(gmx_ana_pos_t *pos, const rvec x);
100 /** Copies the evaluated positions to a preallocated data structure. */
101 void
102 gmx_ana_pos_copy(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, bool bFirst);
103
104 /** Sets the number of positions in a position structure. */
105 void
106 gmx_ana_pos_set_nr(gmx_ana_pos_t *pos, int n);
107 /** Empties a position data structure with full initialization. */
108 void
109 gmx_ana_pos_empty_init(gmx_ana_pos_t *pos);
110 /** Empties a position data structure. */
111 void
112 gmx_ana_pos_empty(gmx_ana_pos_t *pos);
113 /** Appends a position to a preallocated data structure with full
114  * initialization. */
115 void
116 gmx_ana_pos_append_init(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, int i);
117 /** Appends a position to a preallocated data structure. */
118 void
119 gmx_ana_pos_append(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, int i, int refid);
120 /** Updates position data structure state after appends. */
121 void
122 gmx_ana_pos_append_finish(gmx_ana_pos_t *pos);
123 void
124 /** Appends atoms from a position into a preallocated index group. */
125 gmx_ana_pos_add_to_group(gmx_ana_index_t *g, gmx_ana_pos_t *src, int i);
126
127 #endif