IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
GridClosePairsFinder.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/GridClosePairsFinder.h
3  * \brief Use a hierarchy of grids to find close pairs.
4  *
5  * Copyright 2007-2015 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPCORE_GRID_CLOSE_PAIRS_FINDER_H
9 #define IMPCORE_GRID_CLOSE_PAIRS_FINDER_H
10 
11 #include "ClosePairsFinder.h"
12 #include <IMP/object_macros.h>
13 #include <IMP/core/core_config.h>
14 
15 IMPCORE_BEGIN_NAMESPACE
16 
17 //! Find all nearby pairs by testing all pairs
18 /**
19  \see ClosePairsScoreState
20  */
21 class IMPCOREEXPORT GridClosePairsFinder : public ClosePairsFinder {
22  public:
24  virtual IntPairs get_close_pairs(const algebra::BoundingBox3Ds &bbs) const
26  virtual IntPairs get_close_pairs(const algebra::BoundingBox3Ds &bas,
27  const algebra::BoundingBox3Ds &bbs) const
29  virtual ParticleIndexPairs get_close_pairs(
30  Model *m, const ParticleIndexes &pc) const IMP_OVERRIDE;
31  virtual ParticleIndexPairs get_close_pairs(
32  Model *m, const ParticleIndexes &pca,
33  const ParticleIndexes &pcb) const IMP_OVERRIDE;
35  Model *m, const ParticleIndexes &pis) const IMP_OVERRIDE;
36 
38 };
39 
40 IMPCORE_END_NAMESPACE
41 
42 #endif /* IMPCORE_GRID_CLOSE_PAIRS_FINDER_H */
Various general useful macros for IMP.
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
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pis) const =0
Find all nearby pairs by testing all pairs.
A base class for algorithms to detect proximities.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.