Removed legacyheaders/typedefs.h
[gromacs.git] / src / gromacs / mdlib / nbnxn_grid.h
blobb5a0ed3053d7dd061ba3f76ebd499ac3dcdc002d
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015, 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.
36 #ifndef _nbnxn_grid_h
37 #define _nbnxn_grid_h
39 #include "gromacs/math/vectypes.h"
40 #include "gromacs/mdlib/nbnxn_consts.h"
41 #include "gromacs/mdlib/nbnxn_internal.h"
42 #include "gromacs/utility/real.h"
44 struct gmx_domdec_zones_t;
46 /* Allocate and initialize ngrid pair search grids in nbs */
47 void nbnxn_grids_init(nbnxn_search_t nbs, int ngrid);
49 /* Put the atoms on the pair search grid.
50 * Only atoms a0 to a1 in x are put on the grid.
51 * The atom_density is used to determine the grid size.
52 * When atom_density<=0, the density is determined from a1-a0 and the corners.
53 * With domain decomposition part of the n particles might have migrated,
54 * but have not been removed yet. This count is given by nmoved.
55 * When move[i] < 0 particle i has migrated and will not be put on the grid.
56 * Without domain decomposition move will be NULL.
58 void nbnxn_put_on_grid(nbnxn_search_t nbs,
59 int ePBC, matrix box,
60 int dd_zone,
61 rvec corner0, rvec corner1,
62 int a0, int a1,
63 real atom_density,
64 const int *atinfo,
65 rvec *x,
66 int nmoved, int *move,
67 int nb_kernel_type,
68 nbnxn_atomdata_t *nbat);
70 /* As nbnxn_put_on_grid, but for the non-local atoms
71 * with domain decomposition. Should be called after calling
72 * nbnxn_search_put_on_grid for the local atoms / home zone.
74 void nbnxn_put_on_grid_nonlocal(nbnxn_search_t nbs,
75 const struct gmx_domdec_zones_t *zones,
76 const int *atinfo,
77 rvec *x,
78 int nb_kernel_type,
79 nbnxn_atomdata_t *nbat);
81 /* Add simple grid type information to the local super/sub grid */
82 void nbnxn_grid_add_simple(nbnxn_search_t nbs,
83 nbnxn_atomdata_t *nbat);
85 /* Return the number of x and y cells in the local grid */
86 void nbnxn_get_ncells(nbnxn_search_t nbs, int *ncx, int *ncy);
88 /* Return the order indices *a of the atoms on the ns grid, size n */
89 void nbnxn_get_atomorder(const nbnxn_search_t nbs, const int **a, int *n);
91 /* Renumber the atom indices on the grid to consecutive order */
92 void nbnxn_set_atomorder(nbnxn_search_t nbs);
94 #endif