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