IMP logo
IMP Reference Guide  2.6.0
The Integrative Modeling Platform
MinimumSingletonScore.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-38828/imp-2.6.0/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-38828/imp-2.6.0/tools/build/container_templates/container/MinimumClassnameScore.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/container/MinimumSingletonScore.h
7  * \brief Define SingletonScore.
8  *
9  * Copyright 2007-2016 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_MINIMUM_SINGLETON_SCORE_H
13 #define IMPCONTAINER_MINIMUM_SINGLETON_SCORE_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/SingletonScore.h>
17 #include <IMP/singleton_macros.h>
18 
19 IMPCONTAINER_BEGIN_NAMESPACE
20 
21 //! Evaluate the min or max n particle scores of the passed set
22 /** Each of the set of SingletonScores is evaluated and the sum of the
23  minimum n is returned.
24 */
25 class IMPCONTAINEREXPORT MinimumSingletonScore : public SingletonScore {
26  SingletonScores scores_;
27  unsigned int n_;
28 
29  public:
30  MinimumSingletonScore(const SingletonScoresTemp &scores, unsigned int n = 1,
31  std::string name = "SingletonScore %1%");
32  virtual double evaluate_index(Model *m, ParticleIndex vt,
35  Model *m, const ParticleIndexes &pis) const IMP_OVERRIDE;
38 
40  ParticleIndex vt) const
42 };
43 
45 
46 IMPCONTAINER_END_NAMESPACE
47 
48 #endif /* IMPCONTAINER_MINIMUM_SINGLETON_SCORE_H */
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Macros for various classes.
virtual Restraints do_create_current_decomposition(Model *m, ParticleIndex vt) const
Overide this to return your own decomposition.
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
Abstract class for scoring object(s) of type ParticleIndex.
#define IMP_SINGLETON_SCORE_METHODS(Name)
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pis) const =0
Define SingletonScore.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
Definition: object_macros.h:42
Evaluate the min or max n particle scores of the passed set.
virtual double evaluate_index(Model *m, ParticleIndex vt, DerivativeAccumulator *da) const =0
Compute the score and the derivative if needed.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for adding derivatives from restraints to the model.