Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_AddMover.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 RNA_AddMover.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_monte_carlo_RNA_AddMover_hh
18 #define INCLUDED_protocols_swa_monte_carlo_RNA_AddMover_hh
19 
20 #include <core/pose/Pose.fwd.hh>
23 #include <core/types.hh>
24 #include <protocols/moves/Mover.hh>
28 
29 
30 namespace protocols {
31 namespace swa {
32 namespace monte_carlo {
33 
34 /////////////////////////////////////////////////////////////////////////////////////////////////
35 /////////////////////////////////////////////////////////////////////////////////////////////////
37 public:
38 
39 
41 
42  //destructor
43  ~RNA_AddMover();
44 
46  void
47  apply( core::pose::Pose & pose, Size const res_to_add, protocols::swa::monte_carlo::MovingResidueCase const moving_residue_case );
48 
49  /// @brief Apply the minimizer to one pose
50  virtual void apply( core::pose::Pose & pose_to_visualize );
51  virtual std::string get_name() const;
52 
53  void set_kT( core::Real const & setting ){ kT_ = setting; }
54 
55  void set_sample_range_small( core::Real const setting ){ sample_range_small_ = setting; }
56 
57  void set_sample_range_large( core::Real const setting ){ sample_range_large_ = setting; }
58 
59  void set_internal_cycles( Size const setting ){ internal_cycles_ = setting; }
60 
61  void set_presample_added_residue( Size const setting ){ presample_added_residue_ = setting; }
62 
64 
65 private:
66 
74 
75 };
76 
77 } // monte_carlo
78 } // swa
79 } // protocols
80 
81 #endif