IMP  2.1.1
The Integrative Modeling Platform
MinimumPairScore.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/MinimumPairScore.h
3  * \brief Define PairScore.
4  *
5  * This file is generated by a script (tools/make-container).
6  * Do not edit directly.
7  *
8  * Copyright 2007-2013 IMP Inventors. All rights reserved.
9  */
10 
11 #ifndef IMPCONTAINER_MINIMUM_PAIR_SCORE_H
12 #define IMPCONTAINER_MINIMUM_PAIR_SCORE_H
13 
14 #include <IMP/container/container_config.h>
15 #include <IMP/PairScore.h>
16 #include <IMP/pair_macros.h>
17 
18 IMPCONTAINER_BEGIN_NAMESPACE
19 
20 //! Evaluate the min or max n particle_pair scores of the passed set
21 /** Each of the set of PairScores is evaluated and the sum of the
22  minimum n is returned.
23 */
24 class IMPCONTAINEREXPORT MinimumPairScore : public PairScore {
25  PairScores scores_;
26  unsigned int n_;
27 
28  public:
29  MinimumPairScore(const PairScoresTemp &scores, unsigned int n = 1,
30  std::string name = "PairScore %1%");
31  virtual double evaluate_index(kernel::Model *m, const ParticleIndexPair& vt,
32  DerivativeAccumulator *da) const IMP_OVERRIDE;
34  const IMP_OVERRIDE;
37 
38  Restraints do_create_current_decomposition( kernel::Model *m, const ParticleIndexPair& vt)
39  const IMP_OVERRIDE;
40 };
41 
43 
44 IMPCONTAINER_END_NAMESPACE
45 
46 #endif /* IMPCONTAINER_MINIMUM_PAIR_SCORE_H */
IMP::base::Vector< IMP::base::WeakPointer< PairScore > > PairScoresTemp
Class for adding derivatives from restraints to the model.
Import IMP/kernel/pair_macros.h in the namespace.
virtual double evaluate_index(kernel::Model *m, const ParticleIndexPair &vt, DerivativeAccumulator *da) const
Compute the score and the derivative if needed.
IMP::base::Vector< IMP::base::Pointer< Restraint > > Restraints
#define IMP_PAIR_SCORE_METHODS(Name)
virtual Restraints do_create_current_decomposition(kernel::Model *m, const ParticleIndexPair &vt) const
Abstract score function.
virtual ModelObjectsTemp do_get_inputs(kernel::Model *m, const ParticleIndexes &pis) const
Import IMP/kernel/PairScore.h in the namespace.
Evaluate the min or max n particle_pair scores of the passed set.
IMP::base::Vector< IMP::base::Pointer< PairScore > > PairScores
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
Class for storing model, its restraints, constraints, and particles.