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
rna
RNA_Relaxer.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 loopRNA_relaxer.hh
11
/// @brief
12
/// @detailed
13
///
14
/// @author Rhiju Das
15
16
17
#ifndef INCLUDED_protocols_rna_RNA_Relaxer_hh
18
#define INCLUDED_protocols_rna_RNA_Relaxer_hh
19
20
#include <
core/types.hh
>
21
#include <
protocols/moves/Mover.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
24
//Oooh.
25
// AUTO-REMOVED #include <ObjexxFCL/FArray1D.hh>
26
27
//// C++ headers
28
#include <string>
29
#include <vector>
30
31
#include <
protocols/rna/RNA_FragmentMover.hh
>
32
#include <
protocols/rna/RNA_Minimizer.hh
>
33
#include <utility/vector1.hh>
34
35
36
namespace
protocols {
37
namespace
rna {
38
39
40
typedef
utility::pointer::owning_ptr< RNA_FragmentMover >
RNA_FragmentMoverOP
;
41
typedef
utility::pointer::owning_ptr< RNA_Minimizer >
RNA_MinimizerOP
;
42
43
/// @brief The RNA de novo structure modeling protocol
44
class
RNA_Relaxer
:
public
protocols::moves::Mover
{
45
public
:
46
/// @brief Construct the protocol object given
47
/// the RNA fragment library to use.
48
RNA_Relaxer
(
RNA_FragmentMoverOP
& rna_fragment_mover,
RNA_MinimizerOP
& rna_minimizer );
49
50
~RNA_Relaxer
();
51
52
/// @brief Clone this object
53
// virtual RNA_Relaxer* clone() const {
54
// return new RNA_Relaxer(*this);
55
// }
56
57
/// @brief Apply the loop-rebuild protocol to the input pose
58
void
apply
(
core::pose::Pose
& pose );
59
virtual
std::string
get_name
()
const
;
60
61
void
62
simple_rmsd_cutoff_relax
(
bool
const
setting ){
simple_rmsd_cutoff_relax_
= setting; }
63
64
private
:
65
66
void
67
make_fragment_moves
(
core::pose::Pose
& pose );
68
69
void
70
find_fragment_by_simple_rmsd_cutoff
(
core::pose::Pose
& pose );
71
72
void
73
lores_monte_carlo
(
core::pose::Pose
& pose );
74
75
//data
76
RNA_FragmentMoverOP
rna_fragment_mover_
;
77
RNA_MinimizerOP
rna_minimizer_
;
78
79
Size
const
relax_cycles_
;
80
Size
const
max_frag_size_
;
81
Size
const
num_find_fragment_tries_
;
82
core::Real
const
rmsd_min_cutoff_
;
83
core::Real
const
rmsd_max_cutoff_
;
84
85
bool
simple_rmsd_cutoff_relax_
;
86
87
};
// class RNA_Relaxer
88
89
90
91
}
//rna
92
}
// protocols
93
94
#endif
Generated on Sat Jun 1 2013 12:10:07 for Rosetta 3.5 by
1.8.4