IMP  2.0.1
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-2013 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"
13 #include <IMP/core/core_config.h>
14 
15 IMPCORE_BEGIN_NAMESPACE
16 
17 //! Find all nearby pairs by testing all pairs
18 /** \see ClosePairsScoreState
19  */
20 class IMPCOREEXPORT QuadraticClosePairsFinder : public ClosePairsFinder
21 {
22  public:
24  bool get_are_close(Particle *a, Particle *b) const;
26 
27 };
28 
29 IMPCORE_END_NAMESPACE
30 
31 #endif /* IMPCORE_QUADRATIC_CLOSE_PAIRS_FINDER_H */