IMP  2.3.1
The Integrative Modeling Platform
IMP::core::TypedPairScore Class Reference

Delegate to another PairScore depending on particle types. More...

#include <IMP/core/TypedPairScore.h>

+ Inheritance diagram for IMP::core::TypedPairScore:

Detailed Description

Delegate to another PairScore depending on particle types.

Each particle is given an integer type, which is used at evaluate time to select a PairScore to use for a given pair of particles. (The ordering of the particles does not matter.) After creating the object, call set_pair_score() to tell it the PairScore objects you want to use for each pair of particle types.

Note
For efficiency, you should probably use the container::PredicatePairRestraint instead.

Definition at line 27 of file TypedPairScore.h.

Public Member Functions

 TypedPairScore (IntKey typekey, bool allow_invalid_types=true)
 Constructor. More...
 
virtual kernel::ModelObjectsTemp do_get_inputs (kernel::Model *m, const kernel::ParticleIndexes &pis) const
 
double evaluate_if_good_indexes (kernel::Model *m, const kernel::ParticleIndexPairs &p, DerivativeAccumulator *da, double max, unsigned int lower_bound, unsigned int upper_bound) const
 
virtual double evaluate_index (kernel::Model *m, const kernel::ParticleIndexPair &p, DerivativeAccumulator *da) const
 Compute the score and the derivative if needed. More...
 
double evaluate_indexes (kernel::Model *m, const kernel::ParticleIndexPairs &p, DerivativeAccumulator *da, unsigned int lower_bound, unsigned int upper_bound) const
 Compute the score and the derivative if needed over a set. More...
 
virtual std::string get_type_name () const
 
virtual ::IMP::base::VersionInfo get_version_info () const
 Get information about the module and version of the object. More...
 
void set_pair_score (PairScore *ps, Int atype, Int btype)
 Set the PairScore to delegate to for a given pair of particle types. More...
 
virtual void set_particle_type (kernel::Particle *) const
 Set the particle's type. More...
 
- Public Member Functions inherited from IMP::kernel::PairScore
 PairScore (std::string name="PairScore %1%")
 
Restraints create_current_decomposition (kernel::Model *m, const kernel::ParticleIndexPair &vt) const
 
virtual double evaluate (const kernel::ParticlePair &vt, DerivativeAccumulator *da) const
 Compute the score and the derivative if needed. More...
 
virtual double evaluate_if_good_index (kernel::Model *m, const kernel::ParticleIndexPair &vt, DerivativeAccumulator *da, double max) const
 Compute the score and the derivative if needed. More...
 
- Public Member Functions inherited from IMP::kernel::ParticleInputs
virtual ContainersTemp get_input_containers (Particle *p) const
 
virtual ParticlesTemp get_input_particles (Particle *p) const
 
ModelObjectsTemp get_inputs (kernel::Model *m, const ParticleIndexes &pis) const
 
- Public Member Functions inherited from IMP::base::Object
virtual void clear_caches ()
 
CheckLevel get_check_level () const
 
LogLevel get_log_level () const
 
void set_check_level (CheckLevel l)
 
void set_log_level (LogLevel l)
 Set the logging level used in this object. More...
 
void set_was_used (bool tf) const
 
void show (std::ostream &out=std::cout) const
 
const std::string & get_name () const
 
void set_name (std::string name)
 

Additional Inherited Members

- Public Types inherited from IMP::kernel::PairScore
typedef kernel::ParticlePair Argument
 
typedef kernel::ParticleIndexPair IndexArgument
 
typedef PairModifier Modifier
 
typedef const
kernel::ParticlePair
PassArgument
 
typedef const
kernel::ParticleIndexPair
PassIndexArgument
 
- Protected Member Functions inherited from IMP::kernel::PairScore
virtual Restraints do_create_current_decomposition (kernel::Model *m, const kernel::ParticleIndexPair &vt) const
 
- Protected Member Functions inherited from IMP::base::Object
 Object (std::string name)
 Construct an object with the given name. More...
 
virtual void do_destroy ()
 

Constructor & Destructor Documentation

IMP::core::TypedPairScore::TypedPairScore ( IntKey  typekey,
bool  allow_invalid_types = true 
)

Constructor.

Parameters
[in]typekeyThe IntKey used to denote the type of each particle.
[in]allow_invalid_typesDesired behavior for particle pairs that have types not covered by set_pair_score(). If true, the score returned for these pairs is zero. If false, evaluate() raises a ValueException.

Member Function Documentation

virtual kernel::ModelObjectsTemp IMP::core::TypedPairScore::do_get_inputs ( kernel::Model m,
const kernel::ParticleIndexes pis 
) const
virtual

Overload this method to specify the inputs.

Reimplemented from IMP::kernel::ParticleInputs.

double IMP::core::TypedPairScore::evaluate_if_good_indexes ( kernel::Model m,
const kernel::ParticleIndexPairs o,
DerivativeAccumulator da,
double  max,
unsigned int  lower_bound,
unsigned int  upper_bound 
) const
virtual

Compute the score and the derivative if needed as in evaluate_index(). but may terminate the computation early if the total score is higher than max.

Returns
the score if score<= max or some arbitrary value > max otherwise.

Implementations for these are provided by the IMP_PAIR_SCORE() macro.

Reimplemented from IMP::kernel::PairScore.

Definition at line 73 of file TypedPairScore.h.

virtual double IMP::core::TypedPairScore::evaluate_index ( kernel::Model m,
const kernel::ParticleIndexPair vt,
DerivativeAccumulator da 
) const
virtual

Compute the score and the derivative if needed.

evaluate the score and the derivative if needed over vt

Parameters
mthe model of vt
vtthe index in m of an object of type ParticlePair
daa derivative accumulator that reweighting computed derivatives. If nullptr, derivatives will not be computed

Reimplemented from IMP::kernel::PairScore.

double IMP::core::TypedPairScore::evaluate_indexes ( kernel::Model m,
const kernel::ParticleIndexPairs o,
DerivativeAccumulator da,
unsigned int  lower_bound,
unsigned int  upper_bound 
) const
virtual

Compute the score and the derivative if needed over a set.

evaluate the score and the derivative if needed over a set of objects in o

Parameters
mthe model of o
oobjects of type ParticlePair, specified by index
daa derivative accumulator that reweighting computed derivatives. If nullptr, derivatives will not be computed
lower_boundindex of first item in o to evaluate
upper_boundindex of last item in o to evaluate
Note
Implementations for these are provided by the IMP_PAIR_SCORE() macro.

Reimplemented from IMP::kernel::PairScore.

Definition at line 73 of file TypedPairScore.h.

virtual ::IMP::base::VersionInfo IMP::core::TypedPairScore::get_version_info ( ) const
virtual

Get information about the module and version of the object.

Reimplemented from IMP::base::Object.

Definition at line 74 of file TypedPairScore.h.

void IMP::core::TypedPairScore::set_pair_score ( PairScore ps,
Int  atype,
Int  btype 
)

Set the PairScore to delegate to for a given pair of particle types.

Parameters
[in]psPairScore to use at evaluate time.
[in]atypeFirst particle type.
[in]btypeSecond particle type.

Definition at line 62 of file TypedPairScore.h.

virtual void IMP::core::TypedPairScore::set_particle_type ( kernel::Particle ) const
virtual

Set the particle's type.

At evaluate time, if a given particle does not have the typekey attribute, this method is called. Here it does nothing, but it could be overridden in a subclass to automatically set the type of a particle, e.g. from other particle attributes such as an atom or residue name.

Definition at line 55 of file TypedPairScore.h.


The documentation for this class was generated from the following file: