Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MultipleDomainMover.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 loopRNA_minimizer.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_rna_MultipleDomainMover_HH
18 #define INCLUDED_protocols_rna_MultipleDomainMover_HH
19 
21 #include <protocols/moves/Mover.hh>
22 
26 
29 #include <core/pose/Pose.fwd.hh>
30 #include <utility/vector1.hh>
31 
32 #include <numeric/xyzVector.fwd.hh>
33 
34 #include <core/types.hh>
35 
36 //// C++ headers
37 // AUTO-REMOVED #include <cstdlib>
38 #include <string>
39 
40 
41 using core::Size;
42 using core::Real;
43 
44 namespace protocols {
45 namespace rna {
46 
47 /// @brief The RNA de novo structure modeling protocol
49 public:
50 
51  /// @brief Construct the protocol object
53 
54  /// @brief Clone this object
55  virtual protocols::moves::MoverOP clone() const {
56  return new MultipleDomainMover(*this);
57  }
58 
59  /// @brief Apply the loop-rebuild protocol to the input pose
60  void apply( core::pose::Pose & pose );
61 
62  virtual std::string get_name() const;
63 
64  Size
66 
67  Size
68  apply_at_domain( core::pose::Pose & pose, Size const & n );
69 
70  void
72 
73  void
75 
76  Size
78 
79  void
80  update_rot_trans_mag( Real const & rot_mag, Real const & trans_mag );
81 
82 
83 private:
84  void
86 
87  void
89 
90  void
92 
93  void
95 
96  void
98 
99  void
101 
102  void
104 
106  get_centroid( core::pose::Pose const & pose );
107 
108  private:
109 
110  bool verbose_;
114  protocols::coarse_rna::CoarseRNA_LoopCloserOP rna_loop_closer_; //Later can make this a "general" loop closer.
119 
120 }; // class MultipleDomainMover
121 
122 
123 
124 } //rna
125 } // protocols
126 
127 #endif