Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BestTotalScoreSelector.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/BestTotalScoreSelector.hh
11 /// @brief provides a selector that picks best fragments based on their total score
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 #ifndef INCLUDED_protocols_frag_picker_BestTotalScoreSelector_hh
15 #define INCLUDED_protocols_frag_picker_BestTotalScoreSelector_hh
16 
18 
20 
21 // package headers
26 
27 // utility headers
28 #include <core/types.hh>
29 #include <utility/pointer/owning_ptr.hh>
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 namespace protocols {
36 namespace frag_picker {
37 
38 /// @brief selects a given number of fragments using a quota scheme
40 public:
41 
42  /// @brief Constructor sets the desired number of fragments.
44  scores::FragmentScoreManagerOP scoring_scheme) :
45  FragmentSelectingRule(frags_per_pos), comparator_(scoring_scheme) {
46 
47  }
48 
50  }
51 
52  /// @brief Selects desired number of fragments from a given candidates
54 
55 private:
57 };
58 
59 
60 } // frag_picker
61 } // protocols
62 
63 
64 #endif /* INCLUDED_protocols_frag_picker_BestTotalScoreSelector_HH */