Introduce ObservablesHistory container
[gromacs.git] / src / gromacs / mdlib / nbnxn_search.h
blob8089e3f8268f15e8c21f31f5fc607024beef1ae5
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 GMX_MDLIB_NBNXN_SEARCH_H
37 #define GMX_MDLIB_NBNXN_SEARCH_H
39 #include "gromacs/mdlib/nbnxn_pairlist.h"
41 struct gmx_domdec_zones_t;
42 struct gmx_groups_t;
43 struct t_blocka;
44 struct t_nrnb;
46 /* Tells if the pair-list corresponding to nb_kernel_type is simple.
47 * Returns FALSE for super-sub type pair-list.
49 gmx_bool nbnxn_kernel_pairlist_simple(int nb_kernel_type);
51 /* Due to the cluster size the effective pair-list is longer than
52 * that of a simple atom pair-list. This function gives the extra distance.
54 real nbnxn_get_rlist_effective_inc(int cluster_size, real atom_density);
56 /* Allocates and initializes a pair search data structure */
57 void nbnxn_init_search(nbnxn_search_t * nbs_ptr,
58 ivec *n_dd_cells,
59 struct gmx_domdec_zones_t *zones,
60 gmx_bool bFEP,
61 int nthread_max);
63 /* Initializes a set of pair lists stored in nbnxn_pairlist_set_t */
64 void nbnxn_init_pairlist_set(nbnxn_pairlist_set_t *nbl_list,
65 gmx_bool simple, gmx_bool combined,
66 nbnxn_alloc_t *alloc,
67 nbnxn_free_t *free);
69 /* Make a apir-list with radius rlist, store it in nbl.
70 * The parameter min_ci_balanced sets the minimum required
71 * number or roughly equally sized ci blocks in nbl.
72 * When set >0 ci lists will be chopped up when the estimate
73 * for the number of equally sized lists is below min_ci_balanced.
74 * With perturbed particles, also a group scheme style nbl_fep list is made.
76 void nbnxn_make_pairlist(const nbnxn_search_t nbs,
77 nbnxn_atomdata_t *nbat,
78 const t_blocka *excl,
79 real rlist,
80 int min_ci_balanced,
81 nbnxn_pairlist_set_t *nbl_list,
82 int iloc,
83 int nb_kernel_type,
84 t_nrnb *nrnb);
86 #endif