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
simple_moves
MonteCarloRecover.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 src/protocols/simple_moves/MonteCarloRecover.hh
11
/// @author Sarel Fleishman (sarelf@uw.edu)
12
13
#ifndef INCLUDED_protocols_moves_MonteCarloRecover_hh
14
#define INCLUDED_protocols_moves_MonteCarloRecover_hh
15
16
// Unit Headers
17
#include <
protocols/simple_moves/MonteCarloRecover.fwd.hh
>
18
#include <
protocols/simple_moves/GenericMonteCarloMover.fwd.hh
>
19
20
// Project Headers
21
#include <
core/types.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <
protocols/filters/Filter.fwd.hh
>
24
#include <
protocols/moves/Mover.hh
>
25
26
// Utility headers
27
// AUTO-REMOVED #include <utility/vector1.hh>
28
29
// Parser headers
30
#include <
protocols/moves/DataMap.fwd.hh
>
31
#include <utility/tag/Tag.fwd.hh>
32
33
#include <utility/vector1.hh>
34
35
36
namespace
protocols {
37
namespace
simple_moves {
38
39
class
MonteCarloRecover
:
public
protocols::moves::Mover
{
40
public
:
41
42
typedef
core::Size
Size
;
43
typedef
core::Real
Real
;
44
typedef
core::pose::Pose
Pose
;
45
typedef
core::pose::PoseOP
PoseOP
;
46
47
typedef
utility::tag::TagPtr
TagPtr
;
48
typedef
protocols::moves::DataMap
DataMap
;
49
typedef
protocols::filters::Filters_map
Filters_map
;
50
typedef
protocols::moves::Movers_map
Movers_map
;
51
typedef
protocols::moves::MoverOP
MoverOP
;
52
53
54
public
:
// constructor/destructor
55
56
/// @brief default constructor
57
MonteCarloRecover
();
58
59
/// @brief destructor
60
~MonteCarloRecover
();
61
62
/// @brief create copy constructor
63
virtual
MoverOP
clone
()
const
;
64
65
/// @brief create this type of objectt
66
virtual
MoverOP
fresh_instance
()
const
;
67
std::string
get_name
()
const
;
68
69
70
/// @brief apply MonteCarloRecover (Mover)
71
virtual
void
apply
(
Pose
& pose );
72
/// @brief set mover
73
void
set_MC
(
GenericMonteCarloMoverOP
mover );
74
GenericMonteCarloMoverOP
get_MC
()
const
;
75
// Undefinede, commenting out to fix PyRosetta build void recover( Pose & pose );
76
77
78
virtual
void
parse_my_tag
(
79
TagPtr
const
tag,
80
DataMap
& data,
81
Filters_map
const
& filters,
82
Movers_map
const
& movers,
83
Pose
const
&
84
);
85
86
bool
recover_low
()
const
;
87
void
recover_low
(
bool
const
recover );
88
89
private
:
// data
90
bool
recover_low_
;
//dflt true; if false, recovers last
91
92
/// @brief mover
93
GenericMonteCarloMoverOP
MC_mover_
;
94
};
95
96
}
// namespace simple_moves
97
}
// namespace protocols
98
99
#endif
100
Generated on Sat Jun 1 2013 12:16:12 for Rosetta 3.5 by
1.8.4