IMP  2.3.1
The Integrative Modeling Platform
RigidBodyDistancePairScore.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/RigidBodyDistancePairScore.h
3  * \brief Act on the distance between two rigid bodies
4  *
5  * Copyright 2007-2014 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPCORE_RIGID_BODY_DISTANCE_PAIR_SCORE_H
9 #define IMPCORE_RIGID_BODY_DISTANCE_PAIR_SCORE_H
10 
11 #include <IMP/core/core_config.h>
12 #include "ClosePairsPairScore.h"
13 #include <IMP/PairContainer.h>
14 #include <IMP/SingletonContainer.h>
15 #include <IMP/PairScore.h>
16 #include <IMP/Refiner.h>
17 
18 IMPCORE_BEGIN_NAMESPACE
19 
20 //! Accelerated computation of the distance between two rigid bodies
21 /** Rigid bodies are made of a collection of particles whose internal
22  relationships don't change. The distance between two rigid bodies
23  can be defined as the minimal distance over all bipartite pairs
24  with one particle taken from each rigid body. This computation can
25  be accelerated (similarly to the RigidClosePairsFinder). The passed
26  PairScore is then applied to this minimal pair to give the returned
27  score.
28  */
29 class IMPCOREEXPORT RigidBodyDistancePairScore : public KClosePairsPairScore {
30  public:
31  /** Use the passed refiner for both particles. */
33 };
34 
35 IMPCORE_END_NAMESPACE
36 
37 #endif /* IMPCORE_RIGID_BODY_DISTANCE_PAIR_SCORE_H */
Import IMP/kernel/SingletonContainer.h in the namespace.
Apply a PairScore to close pairs.
Abstract class for scoring object(s) of type ParticlePair.
Import IMP/kernel/PairContainer.h in the namespace.
Accelerated computation of the distance between two rigid bodies.
Import IMP/kernel/Refiner.h in the namespace.
Import IMP/kernel/PairScore.h in the namespace.
Abstract class to implement hierarchical methods.