IMP logo
IMP Reference Guide  develop.907651fe7c,2026/01/28
The Integrative Modeling Platform
PairConstraint.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-381/imp-20260128.develop.907651fe7c/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-381/imp-20260128.develop.907651fe7c/tools/build/container_templates/core/ClassnameConstraint.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/core/PairConstraint.h
7  * \brief Use a PairModifier applied to a ParticlePairsTemp to
8  * maintain an invariant
9  *
10  * Copyright 2007-2026 IMP Inventors. All rights reserved.
11  */
12 
13 #ifndef IMPCORE_PAIR_CONSTRAINT_H
14 #define IMPCORE_PAIR_CONSTRAINT_H
15 
16 #include <IMP/core/core_config.h>
17 #include <IMP/internal/TupleConstraint.h>
18 #include <IMP/PairModifier.h>
20 #include <cereal/access.hpp>
21 #include <cereal/types/base_class.hpp>
22 
23 IMPCORE_BEGIN_NAMESPACE
24 //! Apply a PairFunction to a Pair
25 /** The score state is passed up to two PairModifiers, one to
26  apply before evaluation and the other after. The one after
27  should take a DerivativeAccumulator as its last argument for
28  PairModifier::apply() and will only be called if
29  the score was computed with derivatives.
30 
31  \see container::PairsConstraint
32  */
34 #if defined(IMP_DOXYGEN) || defined(SWIG)
35  public Constraint
36 #else
37  public IMP::internal::TupleConstraint<PairModifier,
38  PairDerivativeModifier>
39 #endif
40  {
41  typedef IMP::internal::TupleConstraint<PairModifier,
43  friend class cereal::access;
44  template<class Archive> void serialize(Archive &ar) {
45  ar(cereal::base_class<
46  IMP::internal::TupleConstraint<PairModifier,
47  PairDerivativeModifier> >(this));
48  }
50 
51  public:
53  PairDerivativeModifier *after, Model *m,
54  const ParticleIndexPair& vt,
55  std::string name = "PairConstraint %1%",
56  bool can_skip=false)
57  : IMP::internal::TupleConstraint<
58  PairModifier, PairDerivativeModifier>(before, after, m,
59  vt, name,
60  can_skip) {}
61 
62  PairConstraint() {}
63 
64  //! Get the PairModifier object used in this constraint
66  return P::get_before_modifier();
67  }
68 
69 #if defined(IMP_DOXYGEN) || defined(SWIG)
70  //! Get the index(es) used in this constraint
71  typename PairModifier::IndexArgument get_index() const;
72 
73  protected:
74  void do_update_attributes();
75  void do_update_derivatives(DerivativeAccumulator *da);
76  virtual ModelObjectsTemp do_get_inputs() const;
77  virtual ModelObjectsTemp do_get_outputs() const;
78 #endif
80 };
81 
82 IMPCORE_END_NAMESPACE
83 
84 #endif /* IMPCORE_PAIR_CONSTRAINT_H */
A Modifier on ParticlePairsTemp.
Apply a PairFunction to a Pair.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
A more IMP-like version of the std::vector.
Definition: Vector.h:50
A base class for modifiers of ParticlePairsTemp.
Definition: PairModifier.h:32
Implement a constraint on the Model.
Definition: Constraint.h:49
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
Ints get_index(const ParticlesTemp &particles, const Subset &subset, const Subsets &excluded)
#define IMP_OBJECT_SERIALIZE_DECL(Name)
Declare methods needed for serialization of Object pointers.
Definition: object_macros.h:95
A Modifier on ParticlePairsTemp.
PairModifier * get_before_modifier() const
Get the PairModifier object used in this constraint.
Class for adding derivatives from restraints to the model.