IMP  2.1.1
The Integrative Modeling Platform
QuadConstraint.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/QuadConstraint.h
3  * \brief Use a QuadModifier applied to a ParticleQuadsTemp to
4  * maintain an invariant
5  *
6  * This file is generated by a script (core/tools/make-container).
7  * Do not edit directly.
8  *
9  * Copyright 2007-2013 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCORE_QUAD_CONSTRAINT_H
13 #define IMPCORE_QUAD_CONSTRAINT_H
14 
15 #include <IMP/core/core_config.h>
16 #include <IMP/kernel/internal/TupleConstraint.h>
17 #include <IMP/QuadModifier.h>
19 #include <IMP/score_state_macros.h>
20 
21 IMPCORE_BEGIN_NAMESPACE
22 //! Apply a QuadFunction to a Quad
23 /** The score state is passed up to two QuadModifiers, one to
24  apply before evaluation and the other after. The one after
25  should take a DerivativeAccumulator as its last argument for
26  QuadModifier::apply() and will only be called if
27  the score was computed with derivatives.
28 
29  \see container::QuadsConstraint
30  */
32 #if defined(IMP_DOXYGEN) || defined(SWIG)
33  public Constraint
34 #else
35  public IMP::kernel::internal::TupleConstraint<QuadModifier,
36  QuadDerivativeModifier>
37 #endif
38  {
39  public:
40  /** \deprecated_at{2.1} Use the model/index constructor.
41  */
42  IMPCORE_DEPRECATED_METHOD_DECL(2.1)
44  QuadDerivativeModifier *after, const ParticleQuad& vt,
45  std::string name = "QuadConstraint %1%")
46  : IMP::kernel::internal::TupleConstraint<
47  QuadModifier, QuadDerivativeModifier>(before, after, vt,
48  name) {
49  IMPCORE_DEPRECATED_METHOD_DEF(2.1, "Use the model/index constructor.");
50  }
51 
53  QuadDerivativeModifier *after, kernel::Model *m,
54  const ParticleIndexQuad& vt,
55  std::string name = "QuadConstraint %1%")
56  : IMP::kernel::internal::TupleConstraint<
57  QuadModifier, QuadDerivativeModifier>(before, after, m,
58  vt, name) {
59  }
60 
61 #if defined(IMP_DOXYGEN) || defined(SWIG)
62  protected:
63  void do_update_attributes();
64  void do_update_derivatives(DerivativeAccumulator *da);
65  virtual kernel::ModelObjectsTemp do_get_inputs() const;
66  virtual kernel::ModelObjectsTemp do_get_outputs() const;
68 #endif
69 };
70 
71 IMPCORE_END_NAMESPACE
72 
73 #endif /* IMPCORE_QUAD_CONSTRAINT_H */
Class for adding derivatives from restraints to the model.
Import IMP/kernel/QuadModifier.h in the namespace.
Apply a QuadFunction to a Quad.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Import IMP/kernel/score_state_macros.h in the namespace.
Implement a constraint on the Model.
Import IMP/kernel/QuadDerivativeModifier.h in the namespace.
A base class for modifiers of ParticleQuadsTemp.
Class for storing model, its restraints, constraints, and particles.