IMP  2.3.1
The Integrative Modeling Platform
NearestNeighborsClosePairsFinder.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/NearestNeighborsClosePairsFinder.h
3  * \brief Test all pairs of particles to find close pairs.
4  *
5  * Copyright 2007-2014 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPCORE_NEAREST_NEIGHBORS_CLOSE_PAIRS_FINDER_H
9 #define IMPCORE_NEAREST_NEIGHBORS_CLOSE_PAIRS_FINDER_H
10 
11 #include "ClosePairsFinder.h"
12 #include <IMP/core/core_config.h>
13 
14 IMPCORE_BEGIN_NAMESPACE
15 
16 //! Find all nearby pairs using the algebra::NearestNeighbor code
17 /** \see IMP::container::ClosePairsScoreState
18  \ingroup cgal
19 */
20 class IMPCOREEXPORT NearestNeighborsClosePairsFinder : public ClosePairsFinder {
21  public:
23 
24 #ifndef SWIG
26 #else
28  const;
30  const kernel::ParticlesTemp &pca, const kernel::ParticlesTemp &pcb) const;
31 #endif
32  virtual IntPairs get_close_pairs(const algebra::BoundingBox3Ds &bbs) const
35  const algebra::BoundingBox3Ds &bbs) const
41  const kernel::ParticleIndexes &pcb) const IMP_OVERRIDE;
44 
46 };
47 
48 IMPCORE_END_NAMESPACE
49 
50 #endif /* IMPCORE_NEAREST_NEIGHBORS_CLOSE_PAIRS_FINDER_H */
A base class for algorithms to find spatial proximities.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
virtual ModelObjectsTemp do_get_inputs(kernel::Model *m, const ParticleIndexes &pis) const
Find all nearby pairs using the algebra::NearestNeighbor code.
kernel::ParticlePairsTemp get_close_pairs(const kernel::ParticlesTemp &pc) const
A base class for algorithms to detect proximities.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for storing model, its restraints, constraints, and particles.
Definition: kernel/Model.h:73