Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LocalInserter.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/loophash/LocalInserter.hh
11 /// @brief
12 /// @author Mike Tyka
13 
14 #ifndef INCLUDED_protocols_loophash_LocalInserter_hh
15 #define INCLUDED_protocols_loophash_LocalInserter_hh
16 
17 //Unit
19 
20 //Core
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
25 
26 //Protocols
28 
29 //Utility
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 //C++
33 #include <string>
34 #include <vector>
35 
36 #include <utility/vector1.hh>
37 
38 namespace protocols {
39 namespace loophash {
40 
41 // @brief Manages the insertion of an arbitrary length of backbone in a local manner
43 public:
44 
45  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
46  virtual ~LocalInserter();
47 
49  }
50 
51  virtual
54  core::pose::Pose &start_pose,
55  const core::pose::Pose &original_pose,
57  core::Size res_pos
58  ) = 0;
59 
60  // closes gaps between ir and jr
61  virtual
64  core::pose::Pose &start_pose,
65  const core::pose::Pose &original_pose,
67  core::Size res_pos
68  ) = 0;
69 
70  // closes many gaps outside of ir and jr
71  // will die if gap exists between ir and jr
72  virtual
75  core::pose::Pose &start_pose,
76  const core::pose::Pose &original_pose,
78  core::Size res_pos
79  ) = 0;
80 
81 private:
82 
83 };
84 
85 // @brief
87 public:
89  LocalInserter(),
90  options_( "dfpmin", 0.2, true , false ),
91  options2_( "dfpmin", 0.02,true , false )
92  {
94  }
95 
96  ///@brief set the score function for the first round of minimization
97  ///during a loophash insert
98  void
101  );
102 
103  ///@brief set the score function for the second round of minimization
104  ///during a loophash insert
105  void
108  );
109 
110  virtual
111  core::Real
113  core::pose::Pose &start_pose,
114  const core::pose::Pose &original_pose,
116  core::Size res_pos
117  );
118 
119  virtual
120  core::Real
122  core::pose::Pose &start_pose,
123  const core::pose::Pose &original_pose,
125  core::Size res_pos
126  );
127 
128  virtual
129  core::Real
131  core::pose::Pose &start_pose,
132  const core::pose::Pose &original_pose,
134  core::Size res_pos
135  );
136 
137 private:
138  // setup scorefunctions for
140 
141  // the scorefunctions themselves
144 
147 };
148 
149 
150 
151 }
152 
153 }
154 
155 #endif
156