Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GunnCostScore.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/GunnCostScore.hh
11 /// @brief Object that scores a fragment by Gunn cost function (how it fits to the local structure)
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 #ifndef INCLUDED_protocols_frag_picker_scores_GunnCostScore_hh
15 #define INCLUDED_protocols_frag_picker_scores_GunnCostScore_hh
16 
17 // package headers
22 
23 
24 #include <core/types.hh>
25 
26 #include <core/pose/Pose.fwd.hh>
27 #include <utility/vector1.fwd.hh>
28 #include <iostream>
29 
30 #include <utility/vector1.hh>
31 
32 
33 namespace protocols {
34 namespace frag_picker {
35 namespace scores {
36 
38 
39 /// @brief scores a fragment by its crmsd to the given reference structure
41 public:
42 
43  /// @brief creates a crmsd-based scoring function.
44  /// @detailed fragments will be compared to a given pose, which should have the same number of residues a the query sequence
46 
48 
49  void do_caching(VallChunkOP);
50  void clean_up();
53 
55 
56 private:
64 };
65 
66 /// @brief Maker class that produces a new GunnCostScore object
68 public:
69 
71  MakeFragmentScoringMethod("GunnCostScore") {
72  }
73 
75 };
76 
77 } // scores
78 } // frag_picker
79 } // protocols
80 
81 #endif // INCLUDED_protocols_frag_picker_scores_GunnCostScore_HH