Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SidechainMinMover.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
11 /// @brief
12 /// @author Sid Chaudhury
13 #ifndef INCLUDED_protocols_docking_SidechainMinMover_hh
14 #define INCLUDED_protocols_docking_SidechainMinMover_hh
15 
16 // Unit headers
19 
20 // Project headers
24 
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace protocols {
31 namespace docking {
32 
34 public:
35 
36  /// @brief Default constructor
38 
39  /// @brief Constructor with one argument - the scoerfunction to minimize with
41 
42  /// @brief Constructor with two arguments. The first is the scorefunction to minimize with, the second is a movemap
44 
45  /// @brief Constructor with two arguments. The first is the scorefunction to minimize with, the second is a task
47 
48  /// @brief Constructor with two arguments. The first is the scorefunction to minimize with, the second is a taskfactory
50 
51  /// @brief Constructor with two arguments. The first is the jump that docking will occur over, the second is the
52  /// scorefunction to minimize with.
54 
55  // destructor
57 
58 
59  /// @brief Completes the setup of a default instantiation of a SideChainMinMover
60  void set_default();
61 
62 
64 
65  void update_movemap( core::pose::Pose & pose );
66 
67  virtual void apply( core::pose::Pose & pose );
68  virtual std::string get_name() const;
69 
70 protected:
75 };
76 
77 
79 public:
80 
81  //default constructor
83 
84  // constructor with arguments
86  core::Size rb_jump,
88  core::Real interface_dist=8.0
89  );
90 
91  // destructor
93 
94  void set_default();
95 
96  void set_interface_dist( core::Real interface_dist);
97  virtual void apply( core::pose::Pose & pose );
98  virtual std::string get_name() const;
99 
100 private:
102 
104 };
105 
106 } //docking
107 } // protocols
108 
109 
110 #endif