IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
MultipleBinormalRestraint.h
Go to the documentation of this file.
1 /**
2  * \file IMP/modeller/MultipleBinormalRestraint.h
3  * \brief Modeller-style multiple binormal (phi/psi) restraint.
4  *
5  * Copyright 2007-2015 IMP Inventors. All rights reserved.
6  *
7  */
8 
9 #ifndef IMPMODELLER_MULTIPLE_BINORMAL_RESTRAINT_H
10 #define IMPMODELLER_MULTIPLE_BINORMAL_RESTRAINT_H
11 
12 #include <IMP/modeller/modeller_config.h>
13 
14 #include <IMP/Restraint.h>
15 #include <IMP/Particle.h>
16 #include <IMP/ParticleTuple.h>
17 #include <IMP/generic.h>
18 
19 IMPMODELLER_BEGIN_NAMESPACE
20 
21 class BinormalTerm;
22 
23 //! Modeller-style multiple binormal (phi/psi) restraint.
24 /** This implements a multiple binormal restraint on the two dihedral angles
25  between the two quads of Particles passed to the restraint, by
26  implementing
27  equation A.76 in the
28  \external{http://salilab.org/modeller/9v7/manual/node441.html,
29  Modeller manual}.
30  The two angles are typically the phi and psi dihedrals of a residue.
31  */
32 class IMPMODELLEREXPORT MultipleBinormalRestraint : public Restraint {
33  std::vector<BinormalTerm> terms_;
34  ParticleIndexQuad q1_, q2_;
35 
36  public:
37  //! Create the multiple binormal restraint.
38  /** After creating the restraint, call add_term one or more times to add
39  BinormalTerms to the restraint.
40  \param[in] m Model.
41  \param[in] q1 First quad of particles.
42  \param[in] q2 Second quad of particles.
43  */
45  const ParticleIndexQuad &q2);
46 
47 #ifndef IMP_DOXYGEN
48  IMPMODELLER_DEPRECATED_METHOD_DECL(2.5)
50  const ParticleQuad &q2);
51 #endif
52 
53  //! Add a single BinormalTerm to the restraint.
54  void add_term(const BinormalTerm &term) { terms_.push_back(term); }
55 
56  virtual double unprotected_evaluate(IMP::DerivativeAccumulator *accum)
57  const IMP_OVERRIDE;
60 };
61 
62 //! A single binormal term in a MultipleBinormalRestraint.
63 class BinormalTerm {
64  double correlation_, weight_;
65  std::pair<double, double> means_, stdevs_;
66 
67  double evaluate(const double dihedral[2], double &sin1, double &sin2,
68  double &cos1, double &cos2, double &rho) const;
69 
70  public:
71  BinormalTerm()
72  : correlation_(-1), weight_(-1), means_(-1, -1), stdevs_(-1, -1) {}
73  friend class MultipleBinormalRestraint;
74 
75  void set_correlation(double correlation) { correlation_ = correlation; }
76  void set_weight(double weight) { weight_ = weight; }
77  void set_means(FloatPair means) { means_ = means; }
78  void set_standard_deviations(FloatPair stdevs) { stdevs_ = stdevs; }
79  IMP_SHOWABLE_INLINE(BinormalTerm, {
80  out << "correlation: " << correlation_ << "; weight: " << weight_
81  << "; means: " << means_.first << ", " << means_.second
82  << "; standard deviations: " << stdevs_.first << ", " << stdevs_.second;
83  });
84 };
86 
87 IMPMODELLER_END_NAMESPACE
88 
89 #endif /* IMPMODELLER_MULTIPLE_BINORMAL_RESTRAINT_H */
#define IMP_SHOWABLE_INLINE(Name, how_to_show)
Declare the methods needed by an object that can be printed.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
std::pair< double, double > FloatPair
A generic pair of floats.
Definition: types.h:27
Classes to handle individual model particles.
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
A single binormal term in a MultipleBinormalRestraint.
#define IMP_VALUES(Name, PluralName)
Define the type for storing sets of values.
Definition: value_macros.h:23
void add_term(const BinormalTerm &term)
Add a single BinormalTerm to the restraint.
Classes to handle individual model particles. (Note that implementation of inline functions is in int...
Modeller-style multiple binormal (phi/psi) restraint.
Abstract base class for all restraints.
virtual ModelObjectsTemp do_get_inputs() const =0
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for adding derivatives from restraints to the model.
A restraint is a term in an IMP ScoringFunction.
Definition: Restraint.h:52
Various important functionality for implementing decorators.