Removed refs to charmm files in share/top/Makefile.am
[gromacs/qmmm-gamess-us.git] / include / nbsearch.h
blob5769c8d5a848cb8cd17d28288811b51f8d805057
1 /*
3 * This source code is part of
5 * G R O M A C S
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
31 /*! \file
32 * \brief API for neighborhood searching.
34 * The API is documented in more detail on a separate page:
35 * \ref nbsearch
37 * The functions within this file can be used independently of the other parts
38 * of the library.
39 * The library also uses the functions internally.
41 #ifndef NBSEARCH_H
42 #define NBSEARCH_H
44 #include <typedefs.h>
46 #include <indexutil.h>
48 #ifdef __cplusplus
49 extern "C"
51 #endif
53 struct gmx_ana_pos_t;
55 /** Data structure for neighborhood searches. */
56 typedef struct gmx_ana_nbsearch_t gmx_ana_nbsearch_t;
58 /** Create a new neighborhood search data structure. */
59 extern int
60 gmx_ana_nbsearch_create(gmx_ana_nbsearch_t **d, real cutoff, int maxn);
61 /** Free memory allocated for neighborhood search. */
62 extern void
63 gmx_ana_nbsearch_free(gmx_ana_nbsearch_t *d);
65 /** Initializes neighborhood search for a new frame. */
66 extern int
67 gmx_ana_nbsearch_init(gmx_ana_nbsearch_t *d, t_pbc *pbc, int n, rvec x[]);
68 /** Initializes neighborhood search for a frame using \c gmx_ana_pos_t. */
69 extern int
70 gmx_ana_nbsearch_pos_init(gmx_ana_nbsearch_t *d, t_pbc *pbc,
71 struct gmx_ana_pos_t *p);
72 /** Check whether a point is within a neighborhood. */
73 extern bool
74 gmx_ana_nbsearch_is_within(gmx_ana_nbsearch_t *d, rvec x);
75 /** Check whether a position is within a neighborhood. */
76 extern bool
77 gmx_ana_nbsearch_pos_is_within(gmx_ana_nbsearch_t *d,
78 struct gmx_ana_pos_t *p, int i);
79 /** Calculates the minimun distance from the reference points. */
80 extern real
81 gmx_ana_nbsearch_mindist(gmx_ana_nbsearch_t *d, rvec x);
82 /** Calculates the minimun distance from the reference points. */
83 extern real
84 gmx_ana_nbsearch_pos_mindist(gmx_ana_nbsearch_t *d,
85 struct gmx_ana_pos_t *p, int i);
87 #ifdef __cplusplus
89 #endif
91 #endif