Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FragmentSelectingRule.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/FragmentSelectingRule.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_FragmentSelectingRule_hh
15 #define INCLUDED_protocols_frag_picker_FragmentSelectingRule_hh
16 
18 
19 // package headers
21 
22 
23 // utility headers
24 #include <utility/pointer/owning_ptr.hh>
25 #include <utility/pointer/ReferenceCount.hh>
26 
27 namespace protocols {
28 namespace frag_picker {
29 
30 /// @brief selects a given number of fragments just by selecting the best ones
32 public:
33 
34  /// @brief Constructor sets the desired number of fragments.
37  }
38 
39  /// @brief Selects desired number of fragments from a given candidates
41 
42  /// @brief Says how many fragments will be selected for each position in a query sequence
43  inline Size frags_per_pos() {
44 
45  return frags_per_pos_;
46  }
47 
49  }
50 
51 private:
53 };
54 
55 } // frag_picker
56 } // protocols
57 
58 
59 #endif /* INCLUDED_protocols_frag_picker_FragmentSelectingRule_HH */