IMP  2.0.0
The Integrative Modeling Platform
Score.h
Go to the documentation of this file.
1 /**
2  * \file IMP/score_functor/Score.h
3  * \brief A Score on the distance between a pair of particles.
4  *
5  * Copyright 2007-2013 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPSCORE_FUNCTOR_SCORE_H
9 #define IMPSCORE_FUNCTOR_SCORE_H
10 
11 #include <IMP/score_functor/score_functor_config.h>
12 #include <IMP/base_types.h>
13 #include <IMP/particle_index.h>
15 #include <limits>
16 
17 IMPSCOREFUNCTOR_BEGIN_NAMESPACE
18 /** A functor for computing a distance based score for two particles.
19  */
20 struct Score {
21  // swig gets confused otherwise
22  Score(){}
23 #ifdef IMP_DOXYGEN
24  /** Return the score at the passed feature size (eg distance). The involved
25  particle indexes are passed along.
26 
27  \pre get_is_trivially_zero() or get_maximum_range() has been called
28  and get_is_trivially_zero() is false. This allows things to be cached
29  across those calls.
30  */
31  template <unsigned int D>
32  double get_score(Model *m, const ParticleIndexTuple<D>& p,
33  double distance) const;
34  /** Return the score and derivative at the passed feature size (eg distance).
35  The derivative is for the feature decreasing.
36 
37  \pre get_is_trivially_zero() or get_maximum_range() has been called
38  and get_is_trivially_zero() is false. This allows things to be cached
39  across those calls.
40  */
41  template <unsigned int D>
42  DerivativePair get_score_and_derivative(Model *m,
43  const ParticleIndexTuple<D>& p,
44  double distance) const;
45 #endif
46  /** Return true if the function can be easily determined to be zero at the
47  passed squared distance. The default implementation provided here
48  returns false.
49 
50  \note That it is squared distance, not distance.
51  */
52  template <unsigned int D>
53  bool get_is_trivially_zero(Model *m, const base::Array<D, ParticleIndex>& p,
54  double squared_distance) const {
55  IMP_UNUSED(m);
56  IMP_UNUSED(p);
57  IMP_UNUSED(squared_distance);
58  return false;
59  }
60  /** Return an upper bound on the distance at which the score can be
61  non-zero. The default implementation provided here returns infinity.*/
62  template <unsigned int D>
63  double get_maximum_range(Model *m,
64  const base::Array<D, ParticleIndex>& p) const {
65  IMP_UNUSED(m);
66  IMP_UNUSED(p);
67  return std::numeric_limits<double>::infinity();
68  }
69  /** Return the set of particles read when particle p is part of the passed
70  tuples. The default implementation provided here just returns the list
71  containing p.*/
72  ModelObjectsTemp get_inputs(Model *m,
73  const ParticleIndexes &pis) const {
74  return IMP::get_particles(m, pis);
75  }
76  void show(std::ostream &) const{}
77 };
78 
79 IMPSCOREFUNCTOR_END_NAMESPACE
80 
81 #endif /* IMPSCORE_FUNCTOR_SCORE_H */