Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PValuedFragmentScoreManager.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file protocols/frag_picker/scores/PValuedFragmentScoreManager.hh
11 /// @brief Score manager that stores statistics of all scores. This allows estimate p-value for a score
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 #ifndef INCLUDED_protocols_frag_picker_scores_PValuedFragmentScoreManager_hh
15 #define INCLUDED_protocols_frag_picker_scores_PValuedFragmentScoreManager_hh
16 
17 // package headers
21 // AUTO-REMOVED #include <protocols/frag_picker/scores/FragmentScoreMap.hh>
24 
25 #include <utility/vector1.hh>
26 
27 namespace protocols {
28 namespace frag_picker {
29 namespace scores {
30 
31 /// @brief holds particular score components, weights and calculates the total score for a fragment candidate
32 /// @detailed a fragment picker object needs exactly one fragment manager to pick fragments. Adding new scoring methods
33 /// is supposed to be done FragmentPicker, which calls proper method from this class.
35 public:
36 
37  /// @brief creates an empty manager
39 
40  /// @brief calculates all the small scores for a given fragment
41  /// @brief results are properly stored inside a FragmentScoreMap object
43 
44  /// @brief calculates all the small scores for a given fragment
45  /// @brief results are properly stored inside a FragmentScoreMap object
47 
48  /// @brief prints a flat table with all scores for all the fragments in a given vector
49  /// @detailed If the manager allows for annotations, they will be printed as well
51  scores::FragmentScoreMapOP> > const&, std::ostream&);
52 
53 private:
55 };
56 
57 } // scores
58 } // frag_picker
59 } // protocols
60 
61 #endif /* INCLUDED_protocols_frag_picker_scores_PValuedFragmentScoreManager_HH */
62