IMP logo
IMP Reference Guide  2.7.0
The Integrative Modeling Platform
QuadRestraint.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-65341/imp-2.7.0/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-65341/imp-2.7.0/tools/build/container_templates/core/ClassnameRestraint.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/core/QuadRestraint.h
7  * \brief Apply a QuadScore to a Quad.
8  *
9  * Copyright 2007-2017 IMP Inventors. All rights reserved.
10  *
11  */
12 
13 #ifndef IMPCORE_QUAD_RESTRAINT_H
14 #define IMPCORE_QUAD_RESTRAINT_H
15 
16 #include <IMP/core/core_config.h>
17 
18 #include <IMP/internal/TupleRestraint.h>
19 #include <IMP/QuadScore.h>
20 
21 #include <iostream>
22 
23 IMPCORE_BEGIN_NAMESPACE
24 
25 //! Applies a QuadScore to a Quad.
26 /** This restraint stores a Quad.
27  \see QuadRestraint
28  */
30 #if defined(SWIG) || defined(IMP_DOXYGEN)
31  public Restraint
32 #else
33  public IMP::internal::TupleRestraint<QuadScore>
34 #endif
35  {
36  public:
37  //! Create the restraint.
38  /** This function takes the function to apply to the
39  stored Quad and the Quad.
40  */
42  std::string name = "QuadRestraint %1%")
43  : IMP::internal::TupleRestraint<QuadScore>(ss, m, vt, name) {
44  }
45 
46 #if defined(SWIG) || defined(IMP_DOXYGEN)
47  protected:
48  double unprotected_evaluate(IMP::DerivativeAccumulator *accum) const;
49  IMP::ModelObjectsTemp do_get_inputs() const;
51 #endif
52 };
53 
54 IMPCORE_END_NAMESPACE
55 
56 #endif /* IMPCORE_QUAD_RESTRAINT_H */
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
QuadRestraint(Model *m, QuadScore *ss, const ParticleIndexQuad &vt, std::string name="QuadRestraint %1%")
Create the restraint.
Definition: QuadRestraint.h:41
A more IMP-like version of the std::vector.
Definition: Vector.h:39
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
Abstract class for scoring object(s) of type ParticleIndexQuad.
Definition: QuadScore.h:37
Applies a QuadScore to a Quad.
Definition: QuadRestraint.h:29
Define QuadScore.
Class for adding derivatives from restraints to the model.
A restraint is a term in an IMP ScoringFunction.
Definition: Restraint.h:52