Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BackrubDDMover.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/protein_interface_design/movers/BackrubDDMover.hh
11 /// @brief Derived class from mover for dock design with backrub moves
12 /// @author Sarel Fleishman (sarelf@u.washington.edu), Eva-Maria Strauch (evas01@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_hh
15 #define INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_hh
16 
17 // Project Headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <core/types.hh>
21 
22 #include <utility/vector1.hh>
23 
24 //Auto Headers
26 
27 
28 // C++ headers
29 
30 namespace protocols {
31 namespace protein_interface_design {
32 namespace movers {
33 
35 {
36 public:
40 public:
43  ScoreFunctionCOP scorefxn,
44  bool const backrub_partner1,
45  bool const backrub_partner2,
46  core::Real const interface_distance_cutoff,
47  core::Size const backrub_moves,
48  core::Real const mc_kt,
49  core::Real const sidechain_move_prob,
50  std::vector< core::Size > const & residues );
51  void apply( Pose & pose );
52  virtual std::string get_name() const;
55  virtual ~BackrubDDMover();
56 protected:
58 private:
67  std::vector< core::Size > residues_;
68 };
69 
70 } // movers
71 } // protein_interface_design
72 } // protocols
73 
74 #endif /*INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_HH*/
75