IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
QuadConstraint.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-6636/imp-2.5.0/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-6636/imp-2.5.0/tools/build/container_templates/core/ClassnameConstraint.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/core/QuadConstraint.h
7  * \brief Use a QuadModifier applied to a ParticleQuadsTemp to
8  * maintain an invariant
9  *
10  * Copyright 2007-2015 IMP Inventors. All rights reserved.
11  */
12 
13 #ifndef IMPCORE_QUAD_CONSTRAINT_H
14 #define IMPCORE_QUAD_CONSTRAINT_H
15 
16 #include <IMP/core/core_config.h>
17 #include <IMP/internal/TupleConstraint.h>
18 #include <IMP/QuadModifier.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::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::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, Model *m,
54  const ParticleIndexQuad& vt,
55  std::string name = "QuadConstraint %1%")
56  : IMP::internal::TupleConstraint<
57  QuadModifier, QuadDerivativeModifier>(before, after, m,
58  vt, name) {}
59 
60 #if defined(IMP_DOXYGEN) || defined(SWIG)
61  protected:
62  void do_update_attributes();
63  void do_update_derivatives(DerivativeAccumulator *da);
64  virtual ModelObjectsTemp do_get_inputs() const;
65  virtual ModelObjectsTemp do_get_outputs() const;
67 #endif
68 };
69 
70 IMPCORE_END_NAMESPACE
71 
72 #endif /* IMPCORE_QUAD_CONSTRAINT_H */
A class to store an fixed array of same-typed values.
Definition: Array.h:33
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Implement a constraint on the Model.
Definition: Constraint.h:49
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
A Modifier on ParticleQuadsTemp.
Apply a QuadFunction to a Quad.
A base class for modifiers of ParticleQuadsTemp.
Definition: QuadModifier.h:33
A Modifier on ParticleQuadsTemp.
Class for adding derivatives from restraints to the model.