IMP
2.1.0
The Integrative Modeling Platform
|
A base class for discrete samplers in Domino2. More...
#include <IMP/domino/DiscreteSampler.h>
Public Member Functions | |
DiscreteSampler (kernel::Model *m, ParticleStatesTable *pst, std::string name) | |
unsigned int | get_maximum_number_of_assignments () const |
Assignments | get_sample_assignments (const Subset &s) const |
void | set_maximum_number_of_assignments (unsigned int mx) |
void | set_particle_states (kernel::Particle *p, ParticleStates *se) |
Public Member Functions inherited from IMP::kernel::Sampler | |
Sampler (kernel::Model *m, std::string name="Sampler %1%") | |
ConfigurationSet * | create_sample () const |
Model * | get_model () const |
ConfigurationSet * | get_sample () const |
ScoringFunction * | get_scoring_function () const |
void | set_scoring_function (ScoringFunctionAdaptor sf) |
Public Member Functions inherited from IMP::base::Object | |
virtual void | clear_caches () |
virtual void | do_destroy () |
CheckLevel | get_check_level () const |
LogLevel | get_log_level () const |
virtual VersionInfo | get_version_info () const |
Get information about the module and version of the object. | |
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) |
virtual std::string | get_type_name () const |
Protected Member Functions | |
virtual Assignments | do_get_sample_assignments (const Subset &all) const =0 |
virtual ConfigurationSet * | do_sample () const |
AssignmentsTable * | get_assignments_table_to_use (const SubsetFilterTables &sfts, unsigned int max=std::numeric_limits< int >::max()) const |
SubsetFilterTables | get_subset_filter_tables_to_use (const kernel::RestraintsTemp &rs, ParticleStatesTable *pst) const |
Protected Member Functions inherited from IMP::base::Object | |
Object (std::string name) | |
Construct an object with the given name. More... | |
Object () | |
Advanced | |
Default values are provided, you only need to replace these if you want to do something special. See the overview of the module for a general description. | |
void | set_particle_states_table (ParticleStatesTable *cse) |
void | set_assignments_table (AssignmentsTable *sst) |
ParticleStatesTable * | get_particle_states_table () const |
void | remove_subset_filter_table (SubsetFilterTable *d) |
void | remove_subset_filter_tables (const SubsetFilterTables &d) |
void | set_subset_filter_tables (const SubsetFilterTables &ps) |
void | set_subset_filter_tables_order (const SubsetFilterTables &objs) |
unsigned int | add_subset_filter_table (SubsetFilterTable *obj) |
void | add_subset_filter_tables (const SubsetFilterTables &objs) |
void | clear_subset_filter_tables () |
unsigned int | get_number_of_subset_filter_tables () const |
bool | get_has_subset_filter_tables () |
SubsetFilterTable * | get_subset_filter_table (unsigned int i) const |
SubsetFilterTables | get_subset_filter_tables () const |
void | reserve_subset_filter_tables (unsigned int sz) |
All the samplers derived from it share some common properties:
Defaults are provided for all the parameters:
Definition at line 50 of file DiscreteSampler.h.
Assignments IMP::domino::DiscreteSampler::get_sample_assignments | ( | const Subset & | s | ) | const |
Return the Assignment objects describing the subsets fitting the description.
void IMP::domino::DiscreteSampler::set_maximum_number_of_assignments | ( | unsigned int | mx | ) |
Limit the number of states that is ever produced for any set of particles.
Doing this can be useful to get some feedback when too many states would otherwise be produced. A warning will be emitted whenever the limit eliminates states.
Definition at line 108 of file DiscreteSampler.h.
void IMP::domino::DiscreteSampler::set_particle_states | ( | kernel::Particle * | p, |
ParticleStates * | se | ||
) |
kernel::Particle states can be set either using this method, or equivalently, by accessing the table itself using get_particle_states_table(). This method is provided for users who want to use the default values and want a simple inferface.
Definition at line 74 of file DiscreteSampler.h.