IMP logo
IMP Reference Guide  develop.45c11de31d,2024/03/27
The Integrative Modeling Platform
TripletRestraint.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-36119/imp-20240327.develop.45c11de31d/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-36119/imp-20240327.develop.45c11de31d/tools/build/container_templates/core/ClassnameRestraint.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/core/TripletRestraint.h
7  * \brief Apply a TripletScore to a Triplet.
8  *
9  * Copyright 2007-2023 IMP Inventors. All rights reserved.
10  *
11  */
12 
13 #ifndef IMPCORE_TRIPLET_RESTRAINT_H
14 #define IMPCORE_TRIPLET_RESTRAINT_H
15 
16 #include <IMP/core/core_config.h>
17 
18 #include <IMP/internal/TupleRestraint.h>
19 #include <IMP/TripletScore.h>
20 
21 #include <iostream>
22 #include <cereal/access.hpp>
23 #include <cereal/types/base_class.hpp>
24 
25 IMPCORE_BEGIN_NAMESPACE
26 
27 //! Applies a TripletScore to a Triplet.
28 /** This restraint stores a Triplet.
29  \see TripletRestraint
30  */
32 #if defined(SWIG) || defined(IMP_DOXYGEN)
33  public Restraint
34 #else
35  public IMP::internal::TupleRestraint<TripletScore>
36 #endif
37  {
38  friend class cereal::access;
39 
40  template<class Archive> void serialize(Archive &ar) {
41  ar(cereal::base_class<
42  IMP::internal::TupleRestraint<TripletScore> >(this));
43  }
45  public:
46  //! Create the restraint.
47  /** This function takes the function to apply to the
48  stored Triplet and the Triplet.
49  */
51  std::string name = "TripletRestraint %1%")
52  : IMP::internal::TupleRestraint<TripletScore>(ss, m, vt, name) {
53  }
54  TripletRestraint() {}
55 
56 #if defined(SWIG) || defined(IMP_DOXYGEN)
57  protected:
58  double unprotected_evaluate(IMP::DerivativeAccumulator *accum) const;
59  IMP::ModelObjectsTemp do_get_inputs() const;
61 #endif
62 };
63 
64 IMPCORE_END_NAMESPACE
65 
66 #endif /* IMPCORE_TRIPLET_RESTRAINT_H */
A class to store a fixed array of same-typed values.
Definition: Array.h:40
#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
TripletRestraint(Model *m, TripletScore *ss, const ParticleIndexTriplet &vt, std::string name="TripletRestraint %1%")
Create the restraint.
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
Applies a TripletScore to a Triplet.
#define IMP_OBJECT_SERIALIZE_DECL(Name)
Declare methods needed for serialization of Object pointers.
Definition: object_macros.h:95
Define TripletScore.
Abstract class for scoring object(s) of type ParticleIndexTriplet.
Definition: TripletScore.h:44
Class for adding derivatives from restraints to the model.
A restraint is a term in an IMP ScoringFunction.
Definition: Restraint.h:56