Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
swa
monte_carlo
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
>
23
#include <
protocols/swa/monte_carlo/RNA_SWA_MonteCarloMover.fwd.hh
>
24
#include <
protocols/swa/monte_carlo/RNA_AddOrDeleteMover.fwd.hh
>
25
#include <
protocols/swa/monte_carlo/RNA_TorsionMover.fwd.hh
>
26
#include <
protocols/swa/monte_carlo/RNA_O2StarMover.fwd.hh
>
27
#include <
core/scoring/ScoreFunction.fwd.hh
>
28
#include <
core/io/silent/SilentFileData.fwd.hh
>
29
#include <
protocols/swa/monte_carlo/types.hh
>
30
31
32
namespace
protocols {
33
namespace
swa {
34
namespace
monte_carlo {
35
36
/////////////////////////////////////////////////////////////////////////////////////////////////
37
/////////////////////////////////////////////////////////////////////////////////////////////////
38
class
RNA_SWA_MonteCarloMover
:
public
protocols::moves::Mover
{
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,
45
core::scoring::ScoreFunctionOP
scorefxn );
46
47
//destructor -- necessary? -- YES destructors are necessary.
48
~RNA_SWA_MonteCarloMover
();
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
73
initialize_next_suite_atoms
();
74
75
void
76
output_silent_file
(
core::pose::Pose
& pose,
Size
const
count );
77
78
private
:
79
80
RNA_AddOrDeleteMoverOP
rna_add_or_delete_mover_
;
81
RNA_TorsionMoverOP
rna_torsion_mover_
;
82
RNA_O2StarMoverOP
rna_o2star_mover_
;
83
84
core::scoring::ScoreFunctionOP
scorefxn_
;
85
86
Size
num_cycles_
,
output_period_
;
87
core::Real
sample_range_small_
,
sample_range_large_
,
kT_
;
88
89
bool
do_add_delete_
;
90
std::string
silent_file_
;
91
core::io::silent::SilentFileDataOP
silent_file_data_
;
92
93
utility::vector1< std::string >
next_suite_atoms_
;
94
95
};
96
97
}
// monte_carlo
98
}
// swa
99
}
// protocols
100
101
#endif
Generated on Sat Jun 1 2013 12:19:00 for Rosetta 3.5 by
1.8.4