Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymSidechainMinMover.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 ( carbon copy by Ingemar AndrĂ© )
13 #ifndef INCLUDED_protocols_symmetric_docking_SymSidechainMinMover_hh
14 #define INCLUDED_protocols_symmetric_docking_SymSidechainMinMover_hh
15 
16 // Unit headers
18 
19 // Project headers
22 #include <core/types.hh>
23 
26 #include <core/pose/Pose.fwd.hh>
29 #include <protocols/moves/Mover.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 namespace protocols {
36 namespace symmetric_docking {
37 
39 public:
40 
41  // default constructor
43 
44  //constructors with arguments
49 
50  // destructor
52 
53  void set_default_options();
54 
56 
57  void update_movemap( core::pose::Pose & pose );
58 
59  virtual void apply( core::pose::Pose & pose );
60  virtual std::string get_name() const;
61 
62 protected:
63 
70 
71  };
72 
73 
75 public:
76 
77  //default constructor
79 
80  // constructor with arguments
83  core::Real interface_dist_in=8.0
84  );
85 
86  // destructor
88 
89  void set_default_options();
90 
91  void set_interface_dist( core::Real interface_dist_in);
92 
93  virtual void apply( core::pose::Pose & pose );
94  virtual std::string get_name() const;
95 
96 private:
97 
99 
101 
102  };
103 
104 } //symmetric_docking
105 } // protocols
106 
107 
108 #endif