Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FullatomRelaxMover.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;
2 // rm-trailing-spaces:t -*-
3 // vi: set ts=2 noet:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available
7 // under license.
8 // (c) The Rosetta software is developed by the contributing members of the
9 // Rosetta Commons.
10 // (c) For more information, see http://www.rosettacommons.org.
11 // Questions about this can be
12 // (c) addressed to University of Washington UW TechTransfer,
13 // email: license@u.washington.edu.
14 
15 /// @file FullatomRelaxMover.hh
16 /// @brief
17 /// @author Robin A Thottungal (rathottungal@gmail.com)
18 
19 #ifndef INCLUDED_protocols_surface_docking_FullatomRelaxMover_hh
20 #define INCLUDED_protocols_surface_docking_FullatomRelaxMover_hh
21 
22 // Unit Headers
24 // Package headers
26 // Project headers
28 #include <protocols/moves/Mover.hh>
30 #include <core/types.hh>
31 #include <core/pose/Pose.fwd.hh>
32 #include <utility/tag/Tag.fwd.hh>
45 #include <core/types.hh>
46 #include <utility/vector1_bool.hh>
47 
48 
49 // Utility Headers
50 #include <utility/pointer/ReferenceCount.hh>
51 #include <utility/vector1.fwd.hh>
52 
53 // C++ Headers
54 #include <string>
55 #include <map>
56 #include <list>
57 
58 //Auto Headers
59 #include <sstream>
60 
61 
62 
63 namespace protocols {
64 namespace surface_docking {
65 
67 
68 public:
69 
71 
72  //destructor
74 
75  // virtual functions that get overloaded or
76  // called from the inheriting classes
77  void apply( core::pose::Pose & );
78 
79  virtual std::string get_name() const;
80 
81  //virtual void setup_list( core::pose::Pose & ) = 0;
82 
83  //virtual void set_angles( core::Real ) = 0;
84 
85  //virtual bool make_move( core::pose::Pose & ) = 0;
86 
87  // Undefined, commenting out to fix PyRosetta build void angle_max(const core::Real);
88 
89  // Undefined, commenting out to fix PyRosetta build void angle_max(const char,const core::Real);
90 
91  void set_nmoves(const core::Size);
92 
93  void setup_defaults();
94 
95  // Undefined, commenting out to fix PyRosetta build void setup_shearTrialMover();
96 
97  // Undefined, commenting out to fix PyRosetta build void setup_smallTrialMover();
98 
99  void setupMovers();
100 
102 
103  void init_from_options();
104 
105  void set_smallmovesize(Size scale);
106 
107  void set_ljrepulsion_weight(core::Real weight_scale);
108 
109  void set_ecounter(core::Size ecount);
110 
112 
113 
115 
116 public:
117  typedef core::Real Real;
118 private:
119 
120  // Options
122 
123  //members for smallTrialMove
129 
130  std::map< char, core::Real > angle_max_;
131  // for scoring
133  // for movers
134 
137 
141 
145 
150 
155 
156 
157  //protocols::docking::DockingHighResOP dockingHigh_res_;
159  };
160 
161 
162 } // surfaceDockingProtocols
163 } // protocols
164 
165 #endif