Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_O2StarMover.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_O2StarMover.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_monte_carlo_RNA_O2StarMover_hh
18 #define INCLUDED_protocols_swa_monte_carlo_RNA_O2StarMover_hh
19 
20 #include <core/types.hh>
21 #include <core/pose/Pose.fwd.hh>
23 #include <protocols/moves/Mover.hh>
26 
27 
28 namespace protocols {
29 namespace swa {
30 namespace monte_carlo {
31 
32 /////////////////////////////////////////////////////////////////////////////////////////////////
33 /////////////////////////////////////////////////////////////////////////////////////////////////
35 public:
36 
38  bool const sample_all_o2star,
39  core::Real const sample_range_small,
40  core::Real const sample_range_large );
41 
42  //destructor -- necessary? -- YES destructors are necessary.
44 
45  // Undefinded, commenting out to fix PyRosetta build void apply( core::pose::Pose & pose, Size const res_to_delete, protocols::swa::monte_carlo::MovingResidueCase const moving_residue_case );
46 
47  /// @brief Apply the minimizer to one pose
49  virtual void apply( core::pose::Pose & pose_to_visualize );
50  virtual std::string get_name() const;
51 
52  void
53  apply( core::pose::Pose & pose, std::string & move_type );
54 
55 private:
56 
57  void
58  sample_near_o2star_torsion( core::pose::Pose & pose, Size const moving_res, core::Real const sample_range);
59 
60  Size
62 
63  Size
65 
66 private:
67 
69  bool const sample_all_o2star_;
71 
72 };
73 
74 } // monte_carlo
75 } // swa
76 } // protocols
77 
78 #endif