Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_SWA_MonteCarloMover.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_SWA_MonteCarloMover.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_monte_carlo_RNA_SWA_MonteCarloMover_hh
18 #define INCLUDED_protocols_swa_monte_carlo_RNA_SWA_MonteCarloMover_hh
19 
20 #include <core/pose/Pose.fwd.hh>
21 #include <core/types.hh>
22 #include <protocols/moves/Mover.hh>
30 
31 
32 namespace protocols {
33 namespace swa {
34 namespace monte_carlo {
35 
36 /////////////////////////////////////////////////////////////////////////////////////////////////
37 /////////////////////////////////////////////////////////////////////////////////////////////////
39 public:
40 
41 
42 RNA_SWA_MonteCarloMover( RNA_AddOrDeleteMoverOP rna_add_or_delete_mover,
43  RNA_TorsionMoverOP rna_torsion_mover,
44  RNA_O2StarMoverOP rna_o2star_mover,
46 
47  //destructor -- necessary? -- YES destructors are necessary.
49 
50  // 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 );
51 
52  /// @brief Apply the minimizer to one pose
53  virtual void apply( core::pose::Pose & pose_to_visualize );
54  virtual std::string get_name() const;
55 
56  void set_kT( core::Real const & setting ){ kT_ = setting; }
57 
58  void set_sample_range_small( core::Real const setting ){ sample_range_small_ = setting; }
59 
60  void set_sample_range_large( core::Real const setting ){ sample_range_large_ = setting; }
61 
62  void set_num_cycles( Size const setting ){ num_cycles_ = setting; }
63 
64  void set_output_period( Size const setting ){ output_period_ = setting; }
65 
66  void set_do_add_delete( bool const setting ){ do_add_delete_ = setting; }
67 
68  void set_silent_file( std::string const setting ){ silent_file_ = setting; }
69 
70 private:
71 
72  void
74 
75  void
76  output_silent_file( core::pose::Pose & pose, Size const count );
77 
78 private:
79 
83 
85 
88 
92 
94 
95 };
96 
97 } // monte_carlo
98 } // swa
99 } // protocols
100 
101 #endif