IMP  2.2.0
The Integrative Modeling Platform
MinimumTripletRestraint.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/MinimumTripletRestraint.h
3  * \brief Score based on the minimum score over a set of Triplets
4  *
5  * WARNING This file was generated from MinimumTripletRestraint.h
6  * in /tmp/nightly-build-28832/imp-2.2.0/tools/build/container_templates/container
7  * by tools/maintenance/setup_containers.py.
8  *
9  * Copyright 2007-2014 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_MINIMUM_TRIPLET_RESTRAINT_H
13 #define IMPCONTAINER_MINIMUM_TRIPLET_RESTRAINT_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/Restraint.h>
17 #include <IMP/TripletScore.h>
18 #include <IMP/TripletContainer.h>
19 
20 IMPCONTAINER_BEGIN_NAMESPACE
21 
22 //! Score based on the min or max TripletScore over a set
23 /** The score is evaluated for each of the VALUETYPE in the container
24  and the value of the min or max n scores is used. That is,
25  if n is 1, the value of the restraint is the value of the min or max
26  score over the container.
27  */
28 class IMPCONTAINEREXPORT MinimumTripletRestraint : public Restraint {
31  unsigned int n_;
32 
33  public:
34  /** n is the number of LCMinimum scores to use.
35  */
36  MinimumTripletRestraint(TripletScore *f, TripletContainerAdaptor c,
37  unsigned int n = 1,
38  std::string name = "MinimumTripletRestraint %1%");
39 
40  public:
41  double unprotected_evaluate(IMP::DerivativeAccumulator *accum) const
42  IMP_OVERRIDE;
43  IMP::kernel::ModelObjectsTemp do_get_inputs() const IMP_OVERRIDE;
45  ;
46 
47  //! Set the number of lowest scores to use.
48  void set_n(unsigned int n) { n_ = n; }
49 #ifndef IMP_DOXYGEN
50  Restraints do_create_current_decomposition() const IMP_OVERRIDE;
51  double unprotected_evaluate_if_good(DerivativeAccumulator *da,
52  double max) const IMP_OVERRIDE;
53 #endif
54 };
55 
56 IMPCONTAINER_END_NAMESPACE
57 
58 #endif /* IMPCONTAINER_MINIMUM_TRIPLET_RESTRAINT_H */
Class for adding derivatives from restraints to the model.
void set_n(unsigned int n)
Set the number of lowest scores to use.
Import IMP/kernel/TripletContainer.h in the namespace.
A smart pointer to a ref-counted Object that is a class memeber.
Definition: base/Pointer.h:147
IMP::base::Vector< IMP::base::Pointer< Restraint > > Restraints
Import IMP/kernel/TripletScore.h in the namespace.
A restraint is a term in an IMP ScoringFunction.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
virtual Restraints do_create_current_decomposition() const
virtual ModelObjectsTemp do_get_inputs() const =0
Import IMP/kernel/Restraint.h in the namespace.
Abstract score function.
Score based on the min or max TripletScore over a set.