![]() |
Rosetta Protocols
2014.16.56682
|
holds particular score components, weights and calculates the total score for a fragment candidate More...
#include <FragmentScoreManager.hh>
Public Member Functions | |
| virtual | ~FragmentScoreManager () |
| Automatically generated virtual destructor for class deriving directly from ReferenceCount. More... | |
| FragmentScoreManager () | |
| creates an empty manager More... | |
| FragmentScoreMapOP | create_empty_map () |
| creates an empty score map More... | |
| void | add_scoring_method (FragmentScoringMethodOP, Real) |
| registers a new scoring method in this manager More... | |
| Size | count_components () |
| says how many scoring methods have already been registered More... | |
| FragmentScoringMethodOP | get_component (Size index) |
| Returns a desired scoring method. More... | |
| utility::vector1< Real > | get_weights () |
| returns a vector of weights that are used to compute the total score More... | |
| void | show_scoring_methods (std::ostream &out) |
| prints a nice table showing the registered scores More... | |
| Real | total_score (FragmentScoreMapOP) |
| calculates the total score More... | |
| virtual bool | score_fragment_from_cache (FragmentCandidateOP, FragmentScoreMapOP) |
| calculates all the small scores for a given fragment More... | |
| virtual bool | score_fragment (FragmentCandidateOP, FragmentScoreMapOP) |
| calculates all the small scores for a given fragment More... | |
| void | use_late_scoring_for_zeros (const bool if_true) |
| those score metohods that have weight = 0.0 will be computed after the fragments are picked More... | |
| bool | if_late_scoring_for_zeros () |
| says if late scoring is used or not More... | |
| bool | score_zero_scores (FragmentCandidateOP, FragmentScoreMapOP) |
| calculates all these small scores for a given fragment whose weight is 0.0 More... | |
| void | register_score_maker (MakeFragmentScoringMethodOP) |
| registers a maker object that will be used to create a scoring method object More... | |
| void | create_scoring_method (std::string const &, Size, Real, Real, bool, FragmentPickerOP, std::string) |
| creates a new scoring method object More... | |
| void | create_scores (std::string const &, FragmentPickerOP) |
| reads a config file and creates scoring methods More... | |
| void | do_caching (VallChunkOP chunk) |
| calls do_caching() for each FragmentScoringMethod object, if it is possible More... | |
| void | clean_up () |
| calls clean_up() for each FragmentScoringMethod object, if it is possible More... | |
| void | set_width (FragmentScoringMethodOP which_score, Size width) |
| sets up a new number of characters spend to print fragment score value More... | |
| void | set_precision (FragmentScoringMethodOP which_score, Size precision) |
| sets up a new precision used to print fragment score value More... | |
| virtual void | describe_fragments (utility::vector1< std::pair< FragmentCandidateOP, scores::FragmentScoreMapOP > > const &, std::ostream &) |
| prints a flat table with all scores for all the fragments in a given vector More... | |
Public Attributes | |
| Size | default_width_ |
| default width used to print a score value, equal to 6 More... | |
| Size | default_precision_ |
| default precision used to print a score value, equal to 1 More... | |
Static Public Attributes | |
| static const Size | TOTAL_PRECISION = 3 |
| precision used to display the total score for each fragment More... | |
Protected Attributes | |
| utility::vector1 < FragmentScoringMethodOP > | scores_ |
| std::map < FragmentScoringMethodOP, Size > | width_ |
| std::map < FragmentScoringMethodOP, Size > | precision_ |
Private Attributes | |
| utility::vector1< Real > | score_weights_ |
| std::map< std::string, MakeFragmentScoringMethodOP > | registered_makers_ |
| bool | zeros_score_later_ |
holds particular score components, weights and calculates the total score for a fragment candidate
|
virtual |
Automatically generated virtual destructor for class deriving directly from ReferenceCount.
Auto-generated virtual destructor
| protocols::frag_picker::scores::FragmentScoreManager::FragmentScoreManager | ( | ) |
creates an empty manager
References default_precision_, default_width_, register_score_maker(), and zeros_score_later_.
| void protocols::frag_picker::scores::FragmentScoreManager::add_scoring_method | ( | FragmentScoringMethodOP | scoring_term, |
| Real | weight | ||
| ) |
registers a new scoring method in this manager
References default_precision_, default_width_, precision_, score_weights_, scores_, protocols::frag_picker::scores::sort_scores(), weights, and width_.
Referenced by create_scoring_method().
| void protocols::frag_picker::scores::FragmentScoreManager::clean_up | ( | ) |
calls clean_up() for each FragmentScoringMethod object, if it is possible
|
inline |
says how many scoring methods have already been registered
References scores_.
| FragmentScoreMapOP protocols::frag_picker::scores::FragmentScoreManager::create_empty_map | ( | ) |
creates an empty score map
References score_weights_.
| void protocols::frag_picker::scores::FragmentScoreManager::create_scores | ( | std::string const & | file_name, |
| FragmentPickerOP | picker | ||
| ) |
reads a config file and creates scoring methods
References create_scoring_method(), getline(), utility_exit_with_message, and weight.
Referenced by protocols::frag_picker::FragmentPicker::parse_command_line().
| void protocols::frag_picker::scores::FragmentScoreManager::create_scoring_method | ( | std::string const & | score_name, |
| Size | priority, | ||
| Real | weight, | ||
| Real | lowest, | ||
| bool | use_lowest, | ||
| FragmentPickerOP | picker, | ||
| std::string | config_line | ||
| ) |
creates a new scoring method object
References add_scoring_method(), registered_makers_, and utility_exit_with_message.
Referenced by create_scores().
|
virtual |
prints a flat table with all scores for all the fragments in a given vector
Reimplemented in protocols::frag_picker::scores::PValuedFragmentScoreManager.
References protocols::abinitio::abscript::I, length, precision_, sc, scores_, TOTAL_PRECISION, total_score(), protocols::frag_picker::scores::tr, w(), and width_.
| void protocols::frag_picker::scores::FragmentScoreManager::do_caching | ( | VallChunkOP | chunk | ) |
calls do_caching() for each FragmentScoringMethod object, if it is possible
References score, score_weights_, scores_, and zeros_score_later_.
|
inline |
Returns a desired scoring method.
References scores_.
|
inline |
returns a vector of weights that are used to compute the total score
References score_weights_.
|
inline |
says if late scoring is used or not
late scoring means that some scores (those with weight=0, such as crmsd) are evaluated only for the selected fragments rather than for all the candidates
References zeros_score_later_.
| void protocols::frag_picker::scores::FragmentScoreManager::register_score_maker | ( | MakeFragmentScoringMethodOP | scoring_term_maker | ) |
registers a maker object that will be used to create a scoring method object
References registered_makers_.
Referenced by FragmentScoreManager().
|
virtual |
calculates all the small scores for a given fragment
results are properly stored inside a FragmentScoreMap object
Reimplemented in protocols::frag_picker::scores::PValuedFragmentScoreManager.
References score, score_weights_, scores_, and zeros_score_later_.
Referenced by protocols::frag_picker::scores::PValuedFragmentScoreManager::score_fragment().
|
virtual |
calculates all the small scores for a given fragment
results are properly stored inside a FragmentScoreMap object
Reimplemented in protocols::frag_picker::scores::PValuedFragmentScoreManager.
References s, score, score_weights_, scores_, and zeros_score_later_.
Referenced by protocols::frag_picker::scores::PValuedFragmentScoreManager::score_fragment_from_cache().
| bool protocols::frag_picker::scores::FragmentScoreManager::score_zero_scores | ( | FragmentCandidateOP | candidate, |
| FragmentScoreMapOP | empty_map | ||
| ) |
calculates all these small scores for a given fragment whose weight is 0.0
References score, score_weights_, and scores_.
|
inline |
sets up a new precision used to print fragment score value
References precision_.
|
inline |
sets up a new number of characters spend to print fragment score value
References width_.
| void protocols::frag_picker::scores::FragmentScoreManager::show_scoring_methods | ( | std::ostream & | out | ) |
prints a nice table showing the registered scores
References score_weights_, and scores_.
| Real protocols::frag_picker::scores::FragmentScoreManager::total_score | ( | FragmentScoreMapOP | f | ) |
calculates the total score
References s, score_weights_, and protocols::analysis::total.
Referenced by protocols::frag_picker::scores::PValuedFragmentScoreManager::describe_fragments(), and describe_fragments().
|
inline |
those score metohods that have weight = 0.0 will be computed after the fragments are picked
References zeros_score_later_.
| Size protocols::frag_picker::scores::FragmentScoreManager::default_precision_ |
default precision used to print a score value, equal to 1
Referenced by add_scoring_method(), and FragmentScoreManager().
| Size protocols::frag_picker::scores::FragmentScoreManager::default_width_ |
default width used to print a score value, equal to 6
Referenced by add_scoring_method(), and FragmentScoreManager().
|
protected |
|
private |
Referenced by create_scoring_method(), and register_score_maker().
|
private |
|
protected |
Referenced by add_scoring_method(), clean_up(), count_components(), protocols::frag_picker::scores::PValuedFragmentScoreManager::describe_fragments(), describe_fragments(), do_caching(), get_component(), protocols::frag_picker::scores::PValuedFragmentScoreManager::score_fragment(), score_fragment(), protocols::frag_picker::scores::PValuedFragmentScoreManager::score_fragment_from_cache(), score_fragment_from_cache(), score_zero_scores(), and show_scoring_methods().
|
static |
precision used to display the total score for each fragment
Referenced by protocols::frag_picker::scores::PValuedFragmentScoreManager::describe_fragments(), and describe_fragments().
|
protected |
|
private |
1.8.7