Merge release-5-0 into master
[alexxy/gromacs.git] / src / gromacs / selection / nbsearch.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2009,2010,2011,2012,2013,2014, 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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 /*! \file
36  * \brief API for neighborhood searching for analysis.
37  *
38  * The main part of the API is the class gmx::AnalysisNeighborhood.
39  * See the class documentation for usage.
40  *
41  * The classes within this file can be used independently of the other parts
42  * of the library.
43  * The library also uses the classes internally.
44  *
45  * \author Teemu Murtola <teemu.murtola@gmail.com>
46  * \inpublicapi
47  * \ingroup module_selection
48  */
49 #ifndef GMX_SELECTION_NBSEARCH_H
50 #define GMX_SELECTION_NBSEARCH_H
51
52 #include <boost/shared_ptr.hpp>
53
54 #include "../math/vectypes.h"
55 #include "../utility/common.h"
56 #include "../utility/gmxassert.h"
57 #include "../utility/real.h"
58
59 struct t_pbc;
60
61 namespace gmx
62 {
63
64 namespace internal
65 {
66 class AnalysisNeighborhoodSearchImpl;
67 class AnalysisNeighborhoodPairSearchImpl;
68 };
69
70 class AnalysisNeighborhoodSearch;
71 class AnalysisNeighborhoodPairSearch;
72
73 /*! \brief
74  * Input positions for neighborhood searching.
75  *
76  * This class supports uniformly specifying sets of positions for various
77  * methods in the analysis neighborhood searching classes
78  * (AnalysisNeighborhood and AnalysisNeighborhoodSearch).
79  *
80  * Note that copies are not made: only a reference to the positions passed to
81  * the constructors are kept.  The caller is responsible to ensure that those
82  * positions remain in scope as long as the neighborhood search object requires
83  * access to them.
84  *
85  * Also note that in addition to constructors here, Selection and
86  * SelectionPosition provide conversions operators to this type.  It is done
87  * this way to not introduce a cyclic dependency between the selection code and
88  * the neighborhood search code, which in turn allows splitting this search
89  * code into a separate lower-level module if desired at some point.
90  *
91  * Methods in this class do not throw.
92  *
93  * \inpublicapi
94  * \ingroup module_selection
95  */
96 class AnalysisNeighborhoodPositions
97 {
98     public:
99         /*! \brief
100          * Initializes positions from a single position vector.
101          *
102          * For positions initialized this way, AnalysisNeighborhoodPair always
103          * returns zero in the corresponding index.
104          *
105          * This constructor is not explicit to allow directly passing an rvec
106          * to methods that accept positions.
107          */
108         AnalysisNeighborhoodPositions(const rvec &x)
109             : count_(1), index_(-1), x_(&x)
110         {
111         }
112         /*! \brief
113          * Initializes positions from an array of position vectors.
114          */
115         AnalysisNeighborhoodPositions(const rvec x[], int count)
116             : count_(count), index_(-1), x_(x)
117         {
118         }
119
120         /*! \brief
121          * Selects a single position to use from an array.
122          *
123          * If called, a single position from the array of positions passed to
124          * the constructor is used instead of the whole array.
125          * In contrast to the AnalysisNeighborhoodPositions(const rvec &)
126          * constructor, AnalysisNeighborhoodPair objects return \p index
127          * instead of zero.
128          */
129         AnalysisNeighborhoodPositions &selectSingleFromArray(int index)
130         {
131             GMX_ASSERT(index >= 0 && index < count_, "Invalid position index");
132             index_ = index;
133             return *this;
134         }
135
136     private:
137         int                     count_;
138         int                     index_;
139         const rvec             *x_;
140
141         //! To access the positions for initialization.
142         friend class internal::AnalysisNeighborhoodSearchImpl;
143         //! To access the positions for initialization.
144         friend class internal::AnalysisNeighborhoodPairSearchImpl;
145 };
146
147 /*! \brief
148  * Neighborhood searching for analysis tools.
149  *
150  * This class implements neighborhood searching routines for analysis tools.
151  * The emphasis is in flexibility and ease of use; one main driver is to have
152  * a common implementation of grid-based searching to avoid replicating this in
153  * multiple tools (and to make more tools take advantage of the significant
154  * performance improvement this allows).
155  *
156  * To use the search, create an object of this type, call setCutoff() to
157  * initialize it, and then repeatedly call initSearch() to start a search with
158  * different sets of reference positions.  For each set of reference positions,
159  * use methods in the returned AnalysisNeighborhoodSearch to find the reference
160  * positions that are within the given cutoff from a provided position.
161  *
162  * initSearch() is thread-safe and can be called from multiple threads.  Each
163  * call returns a different instance of the search object that can be used
164  * independently of the others.  The returned AnalysisNeighborhoodSearch
165  * objects are also thread-safe, and can be used concurrently from multiple
166  * threads.  It is also possible to create multiple concurrent searches within
167  * a single thread.
168  *
169  * \todo
170  * Support for exclusions.
171  * The 4.5/4.6 C API had very low-level support for exclusions, which was not
172  * very convenient to use, and hadn't been tested much.  The internal code that
173  * it used to do the exclusion during the search itself is still there, but it
174  * needs more thought on what would be a convenient way to initialize it.
175  * Can be implemented once there is need for it in some calling code.
176  *
177  * \inpublicapi
178  * \ingroup module_selection
179  */
180 class AnalysisNeighborhood
181 {
182     public:
183         //! Searching algorithm to use.
184         enum SearchMode
185         {
186             //! Select algorithm based on heuristic efficiency considerations.
187             eSearchMode_Automatic,
188             //! Use a simple loop over all pairs.
189             eSearchMode_Simple,
190             //! Use grid-based searching whenever possible.
191             eSearchMode_Grid
192         };
193
194         //! Creates an uninitialized neighborhood search.
195         AnalysisNeighborhood();
196         ~AnalysisNeighborhood();
197
198         /*! \brief
199          * Set cutoff distance for the neighborhood searching.
200          *
201          * \param[in]  cutoff Cutoff distance for the search
202          *   (<=0 stands for no cutoff).
203          *
204          * Currently, can only be called before the first call to initSearch().
205          * If this method is not called, no cutoff is used in the searches.
206          *
207          * Does not throw.
208          */
209         void setCutoff(real cutoff);
210         /*! \brief
211          * Sets the algorithm to use for searching.
212          *
213          * \param[in] mode  Search mode to use.
214          *
215          * Note that if \p mode is \ref eSearchMode_Grid, it is still only a
216          * suggestion: grid-based searching may not be possible with the
217          * provided input, in which case a simple search is still used.
218          * This is mainly useful for testing purposes to force a mode.
219          *
220          * Does not throw.
221          */
222         void setMode(SearchMode mode);
223         //! Returns the currently active search mode.
224         SearchMode mode() const;
225
226         /*! \brief
227          * Initializes neighborhood search for a set of positions.
228          *
229          * \param[in] pbc        PBC information for the frame.
230          * \param[in] positions  Set of reference positions to use.
231          * \returns   Search object that can be used to find positions from
232          *      \p x within the given cutoff.
233          * \throws    std::bad_alloc if out of memory.
234          *
235          * Currently, the input positions cannot use
236          * AnalysisNeighborhoodPositions::selectSingleFromArray().
237          */
238         AnalysisNeighborhoodSearch
239         initSearch(const t_pbc                         *pbc,
240                    const AnalysisNeighborhoodPositions &positions);
241
242     private:
243         class Impl;
244
245         PrivateImplPointer<Impl> impl_;
246 };
247
248 /*! \brief
249  * Value type to represent a pair of positions found in neighborhood searching.
250  *
251  * Methods in this class do not throw.
252  *
253  * \inpublicapi
254  * \ingroup module_selection
255  */
256 class AnalysisNeighborhoodPair
257 {
258     public:
259         //! Initializes an invalid pair.
260         AnalysisNeighborhoodPair() : refIndex_(-1), testIndex_(0) {}
261         //! Initializes a pair object with the given data.
262         AnalysisNeighborhoodPair(int refIndex, int testIndex)
263             : refIndex_(refIndex), testIndex_(testIndex)
264         {
265         }
266
267         /*! \brief
268          * Whether this pair is valid.
269          *
270          * If isValid() returns false, other methods should not be called.
271          */
272         bool isValid() const { return refIndex_ >= 0; }
273
274         /*! \brief
275          * Returns the index of the reference position in the pair.
276          *
277          * This index is always the index into the position array provided to
278          * AnalysisNeighborhood::initSearch().
279          */
280         int refIndex() const
281         {
282             GMX_ASSERT(isValid(), "Accessing invalid object");
283             return refIndex_;
284         }
285         /*! \brief
286          * Returns the index of the test position in the pair.
287          *
288          * The contents of this index depends on the context (method call) that
289          * produces the pair.
290          * If there was no array in the call, this index is zero.
291          */
292         int testIndex() const
293         {
294             GMX_ASSERT(isValid(), "Accessing invalid object");
295             return testIndex_;
296         }
297
298     private:
299         int                     refIndex_;
300         int                     testIndex_;
301 };
302
303 /*! \brief
304  * Initialized neighborhood search with a fixed set of reference positions.
305  *
306  * An instance of this class is obtained through
307  * AnalysisNeighborhood::initSearch(), and can be used to do multiple searches
308  * against the provided set of reference positions.
309  * It is possible to create concurrent pair searches (including from different
310  * threads), as well as call other methods in this class while a pair search is
311  * in progress.
312  *
313  * This class works like a pointer: copies of it point to the same search.
314  * In general, avoid creating copies, and only use the copy/assignment support
315  * for moving the variable around.  With C++11, this class would best be
316  * movable.
317  *
318  * Methods in this class do not throw unless otherwise indicated.
319  *
320  * \todo
321  * Make it such that reset() is not necessary to call in code that repeatedly
322  * assigns the result of AnalysisNeighborhood::initSearch() to the same
323  * variable (see sm_distance.cpp).
324  *
325  * \todo
326  * Consider merging nearestPoint() and minimumDistance() by adding the distance
327  * to AnalysisNeighborhoodPair.
328  *
329  * \inpublicapi
330  * \ingroup module_selection
331  */
332 class AnalysisNeighborhoodSearch
333 {
334     public:
335         /*! \brief
336          * Internal short-hand type for a pointer to the implementation class.
337          *
338          * shared_ptr is used here to automatically keep a reference count to
339          * track whether an implementation class is still used outside the
340          * AnalysisNeighborhood object.  Ownership currently always stays with
341          * AnalysisNeighborhood; it always keeps one instance of the pointer.
342          */
343         typedef boost::shared_ptr<internal::AnalysisNeighborhoodSearchImpl>
344             ImplPointer;
345
346         /*! \brief
347          * Initializes an invalid search.
348          *
349          * Such an object cannot be used for searching.  It needs to be
350          * assigned a value from AnalysisNeighborhood::initSearch() before it
351          * can be used.  Provided to allow declaring a variable to hold the
352          * search before calling AnalysisNeighborhood::initSearch().
353          */
354         AnalysisNeighborhoodSearch();
355         /*! \brief
356          * Internally initialize the search.
357          *
358          * Used to implement AnalysisNeighborhood::initSearch().
359          * Cannot be called from user code.
360          */
361         explicit AnalysisNeighborhoodSearch(const ImplPointer &impl);
362
363         /*! \brief
364          * Clears this search.
365          *
366          * Equivalent to \c "*this = AnalysisNeighborhoodSearch();".
367          * Currently, this is necessary to avoid unnecessary memory allocation
368          * if the previous search variable is still in scope when you want to
369          * call AnalysisNeighborhood::initSearch() again.
370          */
371         void reset();
372
373         /*! \brief
374          * Returns the searching algorithm that this search is using.
375          *
376          * The return value is never AnalysisNeighborhood::eSearchMode_Automatic.
377          */
378         AnalysisNeighborhood::SearchMode mode() const;
379
380         /*! \brief
381          * Check whether a point is within a neighborhood.
382          *
383          * \param[in] positions  Set of test positions to use.
384          * \returns   true if any of the test positions is within the cutoff of
385          *     any reference position.
386          */
387         bool isWithin(const AnalysisNeighborhoodPositions &positions) const;
388         /*! \brief
389          * Calculates the minimum distance from the reference points.
390          *
391          * \param[in] positions  Set of test positions to use.
392          * \returns   The distance to the nearest reference position, or the
393          *     cutoff value if there are no reference positions within the
394          *     cutoff.
395          */
396         real minimumDistance(const AnalysisNeighborhoodPositions &positions) const;
397         /*! \brief
398          * Finds the closest reference point.
399          *
400          * \param[in] positions  Set of test positions to use.
401          * \returns   The reference index identifies the reference position
402          *     that is closest to the test positions.
403          *     The test index identifies the test position that is closest to
404          *     the provided test position.  The returned pair is invalid if
405          *     no reference position is within the cutoff.
406          */
407         AnalysisNeighborhoodPair
408         nearestPoint(const AnalysisNeighborhoodPositions &positions) const;
409
410         /*! \brief
411          * Start a search to find reference positions within a cutoff.
412          *
413          * \param[in] positions  Set of test positions to use.
414          * \returns   Initialized search object to loop through all reference
415          *     positions within the configured cutoff.
416          * \throws    std::bad_alloc if out of memory.
417          */
418         AnalysisNeighborhoodPairSearch
419         startPairSearch(const AnalysisNeighborhoodPositions &positions) const;
420
421     private:
422         typedef internal::AnalysisNeighborhoodSearchImpl Impl;
423
424         ImplPointer             impl_;
425 };
426
427 /*! \brief
428  * Initialized neighborhood pair search with a fixed set of positions.
429  *
430  * This class is used to loop through pairs of neighbors within the cutoff
431  * provided to AnalysisNeighborhood.  The following code demonstrates its use:
432  * \code
433    gmx::AnalysisNeighborhood       nb;
434    nb.setCutoff(cutoff);
435    gmx::AnalysisNeighborhoodPositions refPos(xref, nref);
436    gmx::AnalysisNeighborhoodSearch search = nb.initSearch(pbc, refPos);
437    gmx::AnalysisNeighborhoodPairSearch pairSearch = search.startPairSearch(selection);
438    gmx::AnalysisNeighborhoodPair pair;
439    while (pairSearch.findNextPair(&pair))
440    {
441        // <do something for each found pair the information in pair>
442    }
443  * \endcode
444  *
445  * It is not possible to use a single search object from multiple threads
446  * concurrently.
447  *
448  * This class works like a pointer: copies of it point to the same search.
449  * In general, avoid creating copies, and only use the copy/assignment support
450  * for moving the variable around.  With C++11, this class would best be
451  * movable.
452  *
453  * Methods in this class do not throw.
454  *
455  * \inpublicapi
456  * \ingroup module_selection
457  */
458 class AnalysisNeighborhoodPairSearch
459 {
460     public:
461         /*! \brief
462          * Internal short-hand type for a pointer to the implementation class.
463          *
464          * See AnalysisNeighborhoodSearch::ImplPointer for rationale of using
465          * shared_ptr and ownership semantics.
466          */
467         typedef boost::shared_ptr<internal::AnalysisNeighborhoodPairSearchImpl>
468             ImplPointer;
469
470         /*! \brief
471          * Internally initialize the search.
472          *
473          * Used to implement AnalysisNeighborhoodSearch::startPairSearch().
474          * Cannot be called from user code.
475          */
476         explicit AnalysisNeighborhoodPairSearch(const ImplPointer &impl);
477
478         /*! \brief
479          * Finds the next pair within the cutoff.
480          *
481          * \param[out] pair  Information about the found pair.
482          * \returns    false if there were no more pairs.
483          *
484          * If the method returns false, \p pair will be invalid.
485          *
486          * \see AnalysisNeighborhoodPair
487          * \see AnalysisNeighborhoodSearch::startPairSearch()
488          */
489         bool findNextPair(AnalysisNeighborhoodPair *pair);
490         /*! \brief
491          * Skip remaining pairs for a test position in the search.
492          *
493          * When called after findNextPair(), makes subsequent calls to
494          * findNextPair() skip any pairs that have the same test position as
495          * that previously returned.
496          * This is useful if the caller wants to search whether any reference
497          * position within the cutoff satisfies some condition.  This method
498          * can be used to skip remaining pairs after the first such position
499          * has been found if the remaining pairs would not have an effect on
500          * the outcome.
501          */
502         void skipRemainingPairsForTestPosition();
503
504     private:
505         ImplPointer             impl_;
506 };
507
508 } // namespace gmx
509
510 #endif