IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
QuadraticClosePairsFinder.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/QuadraticClosePairsFinder.h
3  * \brief Test all pairs of particles to find close pairs.
4  *
5  * Copyright 2007-2015 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPCORE_QUADRATIC_CLOSE_PAIRS_FINDER_H
9 #define IMPCORE_QUADRATIC_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 by testing all pairs
17 /** \see ClosePairsScoreState
18  */
19 class IMPCOREEXPORT QuadraticClosePairsFinder : public ClosePairsFinder {
20  public:
22  bool get_are_close(Particle *a, Particle *b) const {
23  return get_are_close(a->get_model(), a->get_index(), b->get_index());
24  }
25  bool get_are_close(Model *m, ParticleIndex a,
26  ParticleIndex b) const;
27  virtual IntPairs get_close_pairs(const algebra::BoundingBox3Ds &bbs) const
29  virtual IntPairs get_close_pairs(const algebra::BoundingBox3Ds &bas,
30  const algebra::BoundingBox3Ds &bbs) const
32  virtual ParticleIndexPairs get_close_pairs(
33  Model *m, const ParticleIndexes &pc) const IMP_OVERRIDE;
34  virtual ParticleIndexPairs get_close_pairs(
35  Model *m, const ParticleIndexes &pca,
36  const ParticleIndexes &pcb) const IMP_OVERRIDE;
38  Model *m, const ParticleIndexes &pis) const IMP_OVERRIDE;
39 
41 };
42 
43 IMPCORE_END_NAMESPACE
44 
45 #endif /* IMPCORE_QUADRATIC_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
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
Class to handle individual model particles.
Definition: Particle.h:37
A base class for algorithms to detect proximities.
ParticleIndex get_index() const
returns the particle index of this particle in its model
Find all nearby pairs by testing all pairs.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.