Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AutoRBRelaxMover.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 #ifndef INCLUDED_protocols_rbsegment_relax_AutoRBRelaxMover_hh
11 #define INCLUDED_protocols_rbsegment_relax_AutoRBRelaxMover_hh
12 
14 #include <core/pose/Pose.fwd.hh>
15 // AUTO-REMOVED #include <core/kinematics/MoveMap.hh>
18 
19 #include <protocols/moves/Mover.hh>
20 #include <protocols/loops/Loops.hh>
22 // AUTO-REMOVED #include <protocols/rbsegment_relax.hh>
23 
25 #include <utility/vector1.hh>
26 
27 namespace protocols {
28 namespace rbsegment_relax {
29 
31 public:
32  AutoRBMover();
33 
34  virtual
35  void apply( core::pose::Pose & pose );
36 
37  virtual
38  std::string get_name() const { return "AutoRBMover"; }
39 
40  virtual
41  void setup_topology( core::pose::Pose & pose );
42 
43 private:
44  void grow_flexible( core::Size maxlen, core::Size nres, core::Size minlen=0 );
45 
47 
49 
57 
58  std::vector< core::fragment::FragSetOP > frag_libs_;
59 
61 };
62 
63 }
64 }
65 
66 #endif