3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
9 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11 * Copyright (c) 2001-2009, The GROMACS development team,
12 * check out http://www.gromacs.org for more information.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * If you want to redistribute modifications, please consider that
20 * scientific software is very special. Version control is crucial -
21 * bugs must be traceable. We will be happy to consider code for
22 * inclusion in the official distribution, but derived work must not
23 * be called official GROMACS. Details are found in the README & COPYING
24 * files - if they are missing, get the official version at www.gromacs.org.
26 * To help us fund GROMACS development, we humbly ask that you cite
27 * the papers on the package - you can find them in the top README file.
29 * For more info, check our website at http://www.gromacs.org
32 * \brief API for handling positions.
39 #include "indexutil.h"
46 * Stores a set of positions together with their origins.
48 typedef struct gmx_ana_pos_t
51 * Number of positions.
59 * Velocities (can be NULL).
63 * Forces (can be NULL).
67 * Mapping of the current positions to the original group.
69 * \see gmx_ana_indexmap_t
73 * Pointer to the current evaluation group.
77 * Number of elements allocated for \c x.
82 /** Initializes an empty position structure. */
84 gmx_ana_pos_clear(gmx_ana_pos_t
*pos
);
85 /** Ensures that enough memory has been allocated to store positions. */
87 gmx_ana_pos_reserve(gmx_ana_pos_t
*pos
, int n
, int isize
);
88 /** Request memory allocation for velocities. */
90 gmx_ana_pos_reserve_velocities(gmx_ana_pos_t
*pos
);
91 /** Request memory allocation for forces. */
93 gmx_ana_pos_reserve_forces(gmx_ana_pos_t
*pos
);
94 /** Initializes a \c gmx_ana_pos_t to represent a constant position. */
96 gmx_ana_pos_init_const(gmx_ana_pos_t
*pos
, rvec x
);
97 /** Frees the memory allocated for position storage. */
99 gmx_ana_pos_deinit(gmx_ana_pos_t
*pos
);
100 /** Frees the memory allocated for positions. */
102 gmx_ana_pos_free(gmx_ana_pos_t
*pos
);
103 /** Copies the evaluated positions to a preallocated data structure. */
105 gmx_ana_pos_copy(gmx_ana_pos_t
*dest
, gmx_ana_pos_t
*src
, gmx_bool bFirst
);
107 /** Sets the number of positions in a position structure. */
109 gmx_ana_pos_set_nr(gmx_ana_pos_t
*pos
, int n
);
110 /** Sets the evaluation group of a position data structure. */
112 gmx_ana_pos_set_evalgrp(gmx_ana_pos_t
*pos
, gmx_ana_index_t
*g
);
113 /** Empties a position data structure with full initialization. */
115 gmx_ana_pos_empty_init(gmx_ana_pos_t
*pos
);
116 /** Empties a position data structure. */
118 gmx_ana_pos_empty(gmx_ana_pos_t
*pos
);
119 /** Appends a position to a preallocated data structure with full
122 gmx_ana_pos_append_init(gmx_ana_pos_t
*dest
, gmx_ana_index_t
*g
,
123 gmx_ana_pos_t
*src
, int i
);
124 /** Appends a position to a preallocated data structure. */
126 gmx_ana_pos_append(gmx_ana_pos_t
*dest
, gmx_ana_index_t
*g
,
127 gmx_ana_pos_t
*src
, int i
, int refid
);
128 /** Updates position data structure state after appends. */
130 gmx_ana_pos_append_finish(gmx_ana_pos_t
*pos
);