2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2009,2010,2011,2012,2013,2014,2015,2017, 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.
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.
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.
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.
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.
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.
37 * Implements functions in position.h.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_selection
48 #include "gromacs/math/vec.h"
49 #include "gromacs/selection/indexutil.h"
50 #include "gromacs/utility/gmxassert.h"
51 #include "gromacs/utility/smalloc.h"
53 gmx_ana_pos_t::gmx_ana_pos_t()
58 gmx_ana_indexmap_clear(&m
);
62 gmx_ana_pos_t::~gmx_ana_pos_t()
67 gmx_ana_indexmap_deinit(&m
);
71 * \param[in,out] pos Position data structure.
72 * \param[in] n Maximum number of positions.
73 * \param[in] isize Maximum number of atoms.
75 * Ensures that enough memory is allocated in \p pos to calculate \p n
76 * positions from \p isize atoms.
79 gmx_ana_pos_reserve(gmx_ana_pos_t
*pos
, int n
, int isize
)
81 GMX_RELEASE_ASSERT(n
>= 0, "Invalid position allocation count");
82 // Always reserve at least one entry to make NULL checks against pos->x
83 // and gmx_ana_pos_reserve_velocities/forces() work as expected in the case
84 // that there are actually no positions.
89 if (pos
->nalloc_x
< n
)
104 gmx_ana_indexmap_reserve(&pos
->m
, n
, isize
);
109 * \param[in,out] pos Position data structure.
111 * Currently, this function can only be called after gmx_ana_pos_reserve()
112 * has been called at least once with a \p n >= 0.
115 gmx_ana_pos_reserve_velocities(gmx_ana_pos_t
*pos
)
117 GMX_RELEASE_ASSERT(pos
->nalloc_x
> 0,
118 "No memory reserved yet for positions");
121 snew(pos
->v
, pos
->nalloc_x
);
126 * \param[in,out] pos Position data structure.
128 * Currently, this function can only be called after gmx_ana_pos_reserve()
129 * has been called at least once with a \p n >= 0.
132 gmx_ana_pos_reserve_forces(gmx_ana_pos_t
*pos
)
134 GMX_RELEASE_ASSERT(pos
->nalloc_x
> 0,
135 "No memory reserved yet for positions");
138 snew(pos
->f
, pos
->nalloc_x
);
143 * \param[in,out] pos Position data structure.
144 * \param[in] n Maximum number of positions.
145 * \param[in] isize Maximum number of atoms.
146 * \param[in] bVelocities Whether to reserve space for velocities.
147 * \param[in] bForces Whether to reserve space for forces.
149 * Ensures that enough memory is allocated in \p pos to calculate \p n
150 * positions from \p isize atoms.
152 * This method needs to be called instead of gmx_ana_pos_reserve() if the
153 * intent is to use gmx_ana_pos_append_init()/gmx_ana_pos_append().
156 gmx_ana_pos_reserve_for_append(gmx_ana_pos_t
*pos
, int n
, int isize
,
157 bool bVelocities
, bool bForces
)
159 gmx_ana_pos_reserve(pos
, n
, isize
);
160 snew(pos
->m
.mapb
.a
, isize
);
161 pos
->m
.mapb
.nalloc_a
= isize
;
164 gmx_ana_pos_reserve_velocities(pos
);
168 gmx_ana_pos_reserve_forces(pos
);
173 * \param[out] pos Position data structure to initialize.
174 * \param[in] x Position vector to use.
177 gmx_ana_pos_init_const(gmx_ana_pos_t
*pos
, const rvec x
)
183 copy_rvec(x
, pos
->x
[0]);
184 clear_rvec(pos
->v
[0]);
185 clear_rvec(pos
->f
[0]);
186 gmx_ana_indexmap_init(&pos
->m
, nullptr, nullptr, INDEX_UNKNOWN
);
190 * \param[in,out] dest Destination positions.
191 * \param[in] src Source positions.
192 * \param[in] bFirst If true, memory is allocated for \p dest and a full
193 * copy is made; otherwise, only variable parts are copied, and no memory
196 * \p dest should have been initialized somehow (calloc() is enough).
199 gmx_ana_pos_copy(gmx_ana_pos_t
*dest
, gmx_ana_pos_t
*src
, bool bFirst
)
203 gmx_ana_pos_reserve(dest
, src
->count(), -1);
206 gmx_ana_pos_reserve_velocities(dest
);
210 gmx_ana_pos_reserve_forces(dest
);
213 memcpy(dest
->x
, src
->x
, src
->count()*sizeof(*dest
->x
));
216 GMX_ASSERT(src
->v
, "src velocities should be non-null if dest velocities are allocated");
217 memcpy(dest
->v
, src
->v
, src
->count()*sizeof(*dest
->v
));
221 GMX_ASSERT(src
->f
, "src forces should be non-null if dest forces are allocated");
222 memcpy(dest
->f
, src
->f
, src
->count()*sizeof(*dest
->f
));
224 gmx_ana_indexmap_copy(&dest
->m
, &src
->m
, bFirst
);
228 * \param[in,out] pos Position data structure.
229 * \param[in] nr Number of positions.
232 gmx_ana_pos_set_nr(gmx_ana_pos_t
*pos
, int nr
)
234 // TODO: This puts the mapping in a somewhat inconsistent state.
239 * \param[in,out] pos Position data structure.
241 * Sets the number of positions to 0.
244 gmx_ana_pos_empty_init(gmx_ana_pos_t
*pos
)
250 /* Initializing these should not really be necessary, but do it for
252 pos
->m
.mapb
.index
[0] = 0;
253 pos
->m
.b
.index
[0] = 0;
254 /* This function should only be used to construct all the possible
255 * positions, so the result should always be static. */
256 pos
->m
.bStatic
= true;
260 * \param[in,out] pos Position data structure.
262 * Sets the number of positions to 0.
265 gmx_ana_pos_empty(gmx_ana_pos_t
*pos
)
269 /* This should not really be necessary, but do it for safety... */
270 pos
->m
.mapb
.index
[0] = 0;
271 /* We set the flag to true, although really in the empty state it
272 * should be false. This makes it possible to update the flag in
273 * gmx_ana_pos_append(), and just make a simple check in
274 * gmx_ana_pos_append_finish(). */
275 pos
->m
.bStatic
= true;
279 * \param[in,out] dest Data structure to which the new position is appended.
280 * \param[in] src Data structure from which the position is copied.
281 * \param[in] i Index in \p from to copy.
284 gmx_ana_pos_append_init(gmx_ana_pos_t
*dest
, gmx_ana_pos_t
*src
, int i
)
289 copy_rvec(src
->x
[i
], dest
->x
[j
]);
294 copy_rvec(src
->v
[i
], dest
->v
[j
]);
298 clear_rvec(dest
->v
[j
]);
305 copy_rvec(src
->f
[i
], dest
->f
[j
]);
309 clear_rvec(dest
->f
[j
]);
312 dest
->m
.refid
[j
] = j
;
313 dest
->m
.mapid
[j
] = src
->m
.mapid
[i
];
314 dest
->m
.orgid
[j
] = src
->m
.orgid
[i
];
315 for (k
= src
->m
.mapb
.index
[i
]; k
< src
->m
.mapb
.index
[i
+1]; ++k
)
317 dest
->m
.mapb
.a
[dest
->m
.mapb
.nra
++] = src
->m
.mapb
.a
[k
];
318 dest
->m
.b
.a
[dest
->m
.b
.nra
++] = src
->m
.b
.a
[k
];
320 dest
->m
.mapb
.index
[j
+1] = dest
->m
.mapb
.nra
;
321 dest
->m
.b
.index
[j
+1] = dest
->m
.mapb
.nra
;
327 * \param[in,out] dest Data structure to which the new position is appended.
328 * \param[in] src Data structure from which the position is copied.
329 * \param[in] i Index in \p src to copy.
330 * \param[in] refid Reference ID in \p out
331 * (all negative values are treated as -1).
334 gmx_ana_pos_append(gmx_ana_pos_t
*dest
, gmx_ana_pos_t
*src
, int i
, int refid
)
336 for (int k
= src
->m
.mapb
.index
[i
]; k
< src
->m
.mapb
.index
[i
+1]; ++k
)
338 dest
->m
.mapb
.a
[dest
->m
.mapb
.nra
++] = src
->m
.mapb
.a
[k
];
340 const int j
= dest
->count();
345 copy_rvec(src
->v
[i
], dest
->v
[j
]);
349 clear_rvec(dest
->v
[j
]);
356 copy_rvec(src
->f
[i
], dest
->f
[j
]);
360 clear_rvec(dest
->f
[j
]);
363 copy_rvec(src
->x
[i
], dest
->x
[j
]);
366 dest
->m
.refid
[j
] = -1;
367 dest
->m
.bStatic
= false;
368 /* If we are using masks, there is no need to alter the
375 dest
->m
.bStatic
= false;
377 dest
->m
.refid
[j
] = refid
;
378 /* Use the original IDs from the output structure to correctly
379 * handle user customization. */
380 dest
->m
.mapid
[j
] = dest
->m
.orgid
[refid
];
382 dest
->m
.mapb
.index
[j
+1] = dest
->m
.mapb
.nra
;
387 * \param[in,out] pos Position data structure.
389 * After gmx_ana_pos_empty(), internal state of the position data structure
390 * is not consistent before this function is called. This function should be
391 * called after any gmx_ana_pos_append() calls have been made.
394 gmx_ana_pos_append_finish(gmx_ana_pos_t
*pos
)
396 if (pos
->m
.mapb
.nr
!= pos
->m
.b
.nr
)
398 pos
->m
.bStatic
= false;
403 * \param[in,out] g Data structure to which the new atoms are appended.
404 * \param[in] src Data structure from which the position is copied.
405 * \param[in] i Index in \p src to copy.
408 gmx_ana_pos_add_to_group(gmx_ana_index_t
*g
, gmx_ana_pos_t
*src
, int i
)
410 for (int k
= src
->m
.mapb
.index
[i
]; k
< src
->m
.mapb
.index
[i
+1]; ++k
)
412 g
->index
[g
->isize
++] = src
->m
.mapb
.a
[k
];