Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_Relaxer.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_relaxer.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_rna_RNA_Relaxer_hh
18 #define INCLUDED_protocols_rna_RNA_Relaxer_hh
19 
20 #include <core/types.hh>
21 #include <protocols/moves/Mover.hh>
22 #include <core/pose/Pose.fwd.hh>
23 
24 //Oooh.
25 // AUTO-REMOVED #include <ObjexxFCL/FArray1D.hh>
26 
27 //// C++ headers
28 #include <string>
29 #include <vector>
30 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace rna {
38 
39 
42 
43 /// @brief The RNA de novo structure modeling protocol
45 public:
46  /// @brief Construct the protocol object given
47  /// the RNA fragment library to use.
48  RNA_Relaxer( RNA_FragmentMoverOP & rna_fragment_mover, RNA_MinimizerOP & rna_minimizer );
49 
50  ~RNA_Relaxer();
51 
52  /// @brief Clone this object
53  // virtual RNA_Relaxer* clone() const {
54  // return new RNA_Relaxer(*this);
55  // }
56 
57  /// @brief Apply the loop-rebuild protocol to the input pose
58  void apply( core::pose::Pose & pose );
59  virtual std::string get_name() const;
60 
61  void
62  simple_rmsd_cutoff_relax( bool const setting ){ simple_rmsd_cutoff_relax_ = setting; }
63 
64 private:
65 
66  void
68 
69  void
71 
72  void
74 
75  //data
78 
84 
86 
87 }; // class RNA_Relaxer
88 
89 
90 
91 } //rna
92 } // protocols
93 
94 #endif