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_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
>
22
#include <
core/scoring/ScoreFunction.fwd.hh
>
23
#include <
protocols/moves/Mover.hh
>
24
#include <
protocols/swa/monte_carlo/types.hh
>
25
#include <
protocols/swa/monte_carlo/RNA_O2StarMover.fwd.hh
>
26
27
28
namespace
protocols {
29
namespace
swa {
30
namespace
monte_carlo {
31
32
/////////////////////////////////////////////////////////////////////////////////////////////////
33
/////////////////////////////////////////////////////////////////////////////////////////////////
34
class
RNA_O2StarMover
:
public
protocols::moves::Mover
{
35
public
:
36
37
RNA_O2StarMover
(
core::scoring::ScoreFunctionOP
scorefxn,
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.
43
~RNA_O2StarMover
();
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
48
using
protocols::moves::Mover::apply
;
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
61
get_random_o2star_residue
(
core::pose::Pose
& pose );
62
63
Size
64
get_random_o2star_residue_near_moving_residue
(
core::pose::Pose
& pose,
utility::vector1< Size >
const
moving_res_list );
65
66
private
:
67
68
core::scoring::ScoreFunctionOP
scorefxn_
;
69
bool
const
sample_all_o2star_
;
70
core::Real
const
sample_range_small_
,
sample_range_large_
;
71
72
};
73
74
}
// monte_carlo
75
}
// swa
76
}
// protocols
77
78
#endif
Generated on Sat Jun 1 2013 12:18:59 for Rosetta 3.5 by
1.8.4