Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GunnCost.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @brief metric for Gunn moves
12 /// @author Oliver Lange ( olange@u.washington.edu )
13 /// @date Wed Aug 22 12:08:31 2007
14 ///
15 
16 #ifndef INCLUDED_protocols_simple_moves_GunnCost_HH
17 #define INCLUDED_protocols_simple_moves_GunnCost_HH
18 
19 // Unit Headers
20 //#include <protocols/simple_moves/GunnTuple.fwd.hh>
21 
22 
23 // Package Headers
27 
28 // Project Headers
29 #include <core/types.hh>
30 #include <core/pose/Pose.fwd.hh>
31 
32 #ifdef WIN32
33 #include <core/pose/Pose.hh> // WIN32 INCLUDE
34 #endif
35 
36 // Utility headers
37 #include <utility/vector1.fwd.hh>
38 #include <utility/pointer/ReferenceCount.hh>
39 
40 // C++ headers
41 #include <map>
42 
43 #include <utility/vector1.hh>
44 
45 
46 namespace protocols {
47 namespace simple_moves {
48 
49 
51 public:
53  q1 = 0;
54  q2 = 0;
55  q3 = 0;
56  q4 = 0;
57  q5 = 0;
58  q6 = 0;
59  }
61 };
62 
63 class GunnCost : public FragmentCost {
64  friend class GunnCostTest;
65 public:
66  GunnCost();
68  ~GunnCost();
69 
70  void score( core::fragment::Frame const&, core::pose::Pose const& pose, ScoreList& scores );
71 
72  //private:
73  void compute_gunn( core::fragment::Frame const& frame, core::Size frag_num, GunnTuple &data );
74  void compute_gunn( core::pose::Pose const& pose, core::Size begin, core::Size end, GunnTuple &data);
75  core::Real score_tuple( GunnTuple const& g1, GunnTuple const& g2 );
77 
78 private:
80 
81 };
82 
83 
84 } //simple_moves
85 } //protocols
86 #endif