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_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
>
21
#include <
core/chemical/ResidueTypeSet.fwd.hh
>
22
#include <
core/scoring/ScoreFunction.fwd.hh
>
23
#include <
core/types.hh
>
24
#include <
protocols/moves/Mover.hh
>
25
#include <
protocols/swa/monte_carlo/types.hh
>
26
#include <
protocols/swa/monte_carlo/RNA_TorsionMover.fwd.hh
>
27
#include <
protocols/swa/monte_carlo/RNA_AddMover.fwd.hh
>
28
29
30
namespace
protocols {
31
namespace
swa {
32
namespace
monte_carlo {
33
34
/////////////////////////////////////////////////////////////////////////////////////////////////
35
/////////////////////////////////////////////////////////////////////////////////////////////////
36
class
RNA_AddMover
:
public
protocols::moves::Mover
{
37
public
:
38
39
40
RNA_AddMover
(
core::chemical::ResidueTypeSetCAP
rsd_set,
core::scoring::ScoreFunctionOP
scorefxn );
41
42
//destructor
43
~RNA_AddMover
();
44
45
using
protocols::moves::Mover::apply
;
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
63
void
set_start_added_residue_in_aform
(
Size
const
setting ){
start_added_residue_in_aform_
= setting; }
64
65
private
:
66
67
core::chemical::ResidueTypeSetCAP
rsd_set_
;
68
core::scoring::ScoreFunctionOP
scorefxn_
;
69
bool
presample_added_residue_
;
70
bool
start_added_residue_in_aform_
;
71
Size
internal_cycles_
;
72
RNA_TorsionMoverOP
rna_torsion_mover_
;
73
core::Real
sample_range_small_
,
sample_range_large_
,
kT_
;
74
75
};
76
77
}
// monte_carlo
78
}
// swa
79
}
// protocols
80
81
#endif
Generated on Sat Jun 1 2013 12:18:57 for Rosetta 3.5 by
1.8.4