fixed recent bug with CUDA texture objects
[gromacs.git] / include / position.h
blob542418fcfb6a3bc7dbf7ef84e89df64685cc1756
1 /*
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-2009, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012,2013, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
38 /*! \file
39 * \brief API for handling positions.
41 #ifndef POSITION_H
42 #define POSITION_H
44 #include "typedefs.h"
46 #include "indexutil.h"
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
52 /*! \brief
53 * Stores a set of positions together with their origins.
55 typedef struct gmx_ana_pos_t
57 /*! \brief
58 * Number of positions.
60 int nr;
61 /*! \brief
62 * Array of positions.
64 rvec *x;
65 /*! \brief
66 * Velocities (can be NULL).
68 rvec *v;
69 /*! \brief
70 * Forces (can be NULL).
72 rvec *f;
73 /*! \brief
74 * Mapping of the current positions to the original group.
76 * \see gmx_ana_indexmap_t
78 gmx_ana_indexmap_t m;
79 /*! \brief
80 * Pointer to the current evaluation group.
82 gmx_ana_index_t *g;
83 /*! \brief
84 * Number of elements allocated for \c x.
86 int nalloc_x;
87 } gmx_ana_pos_t;
89 /** Initializes an empty position structure. */
90 void
91 gmx_ana_pos_clear(gmx_ana_pos_t *pos);
92 /** Ensures that enough memory has been allocated to store positions. */
93 void
94 gmx_ana_pos_reserve(gmx_ana_pos_t *pos, int n, int isize);
95 /** Request memory allocation for velocities. */
96 void
97 gmx_ana_pos_reserve_velocities(gmx_ana_pos_t *pos);
98 /** Request memory allocation for forces. */
99 void
100 gmx_ana_pos_reserve_forces(gmx_ana_pos_t *pos);
101 /** Initializes a \c gmx_ana_pos_t to represent a constant position. */
102 void
103 gmx_ana_pos_init_const(gmx_ana_pos_t *pos, rvec x);
104 /** Frees the memory allocated for position storage. */
105 void
106 gmx_ana_pos_deinit(gmx_ana_pos_t *pos);
107 /** Frees the memory allocated for positions. */
108 void
109 gmx_ana_pos_free(gmx_ana_pos_t *pos);
110 /** Copies the evaluated positions to a preallocated data structure. */
111 void
112 gmx_ana_pos_copy(gmx_ana_pos_t *dest, gmx_ana_pos_t *src, gmx_bool bFirst);
114 /** Sets the number of positions in a position structure. */
115 void
116 gmx_ana_pos_set_nr(gmx_ana_pos_t *pos, int n);
117 /** Sets the evaluation group of a position data structure. */
118 void
119 gmx_ana_pos_set_evalgrp(gmx_ana_pos_t *pos, gmx_ana_index_t *g);
120 /** Empties a position data structure with full initialization. */
121 void
122 gmx_ana_pos_empty_init(gmx_ana_pos_t *pos);
123 /** Empties a position data structure. */
124 void
125 gmx_ana_pos_empty(gmx_ana_pos_t *pos);
126 /** Appends a position to a preallocated data structure with full
127 * initialization. */
128 void
129 gmx_ana_pos_append_init(gmx_ana_pos_t *dest, gmx_ana_index_t *g,
130 gmx_ana_pos_t *src, int i);
131 /** Appends a position to a preallocated data structure. */
132 void
133 gmx_ana_pos_append(gmx_ana_pos_t *dest, gmx_ana_index_t *g,
134 gmx_ana_pos_t *src, int i, int refid);
135 /** Updates position data structure state after appends. */
136 void
137 gmx_ana_pos_append_finish(gmx_ana_pos_t *pos);
139 #ifdef __cplusplus
141 #endif
143 #endif