IMP  2.3.1
The Integrative Modeling Platform
MinimumQuadScore.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/MinimumQuadScore.h
3  * \brief Define QuadScore.
4  *
5  * This file is generated by a script (tools/make-container).
6  * Do not edit directly.
7  *
8  * Copyright 2007-2014 IMP Inventors. All rights reserved.
9  */
10 
11 #ifndef IMPCONTAINER_MINIMUM_QUAD_SCORE_H
12 #define IMPCONTAINER_MINIMUM_QUAD_SCORE_H
13 
14 #include <IMP/container/container_config.h>
15 #include <IMP/QuadScore.h>
16 #include <IMP/quad_macros.h>
17 
18 IMPCONTAINER_BEGIN_NAMESPACE
19 
20 //! Evaluate the min or max n particle_quad scores of the passed set
21 /** Each of the set of QuadScores is evaluated and the sum of the
22  minimum n is returned.
23 */
24 class IMPCONTAINEREXPORT MinimumQuadScore : public QuadScore {
25  QuadScores scores_;
26  unsigned int n_;
27 
28  public:
29  MinimumQuadScore(const QuadScoresTemp &scores, unsigned int n = 1,
30  std::string name = "QuadScore %1%");
31  virtual double evaluate_index(kernel::Model *m, const kernel::ParticleIndexQuad& vt,
37 
39  const kernel::ParticleIndexQuad& vt) const
41 };
42 
44 
45 IMPCONTAINER_END_NAMESPACE
46 
47 #endif /* IMPCONTAINER_MINIMUM_QUAD_SCORE_H */
Abstract class for scoring object(s) of type ParticleQuad.
Class for adding derivatives from restraints to the model.
virtual double evaluate_index(kernel::Model *m, const kernel::ParticleIndexQuad &vt, DerivativeAccumulator *da) const
Compute the score and the derivative if needed.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Import IMP/kernel/quad_macros.h in the namespace.
IMP::base::Vector< IMP::base::Pointer< Restraint > > Restraints
A class to store an fixed array of same-typed values.
Definition: Array.h:33
Evaluate the min or max n particle_quad scores of the passed set.
virtual ModelObjectsTemp do_get_inputs(kernel::Model *m, const ParticleIndexes &pis) const
#define IMP_QUAD_SCORE_METHODS(Name)
virtual Restraints do_create_current_decomposition(kernel::Model *m, const kernel::ParticleIndexQuad &vt) const
Import IMP/kernel/QuadScore.h in the namespace.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
Definition: object_macros.h:52
IMP::base::Vector< IMP::base::Pointer< QuadScore > > QuadScores
IMP::base::Vector< IMP::base::WeakPointer< QuadScore > > QuadScoresTemp
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for storing model, its restraints, constraints, and particles.
Definition: kernel/Model.h:73