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
rigid
RollMover.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 /protocols/rigid/RollMover.hh
11
/// @brief
12
/// @author
13
#ifndef INCLUDED_protocols_rigid_RollMover_hh
14
#define INCLUDED_protocols_rigid_RollMover_hh
15
// Unit Headers
16
#include <
protocols/rigid/RollMover.fwd.hh
>
17
// Project Headers
18
#include <
core/pose/Pose.fwd.hh
>
19
#include <
protocols/moves/Mover.hh
>
20
// AUTO-REMOVED #include <numeric/xyz.io.hh>
21
// AUTO-REMOVED #include <numeric/xyz.functions.hh>
22
23
// Utility Headers
24
#include <
core/types.hh
>
25
// AUTO-REMOVED #include <utility/tag/Tag.hh>
26
27
#include <utility/vector0.hh>
28
#include <utility/vector1.hh>
29
#include <numeric/xyzVector.hh>
30
31
namespace
protocols {
32
namespace
rigid {
33
34
///@details
35
class
RollMover
:
public
protocols::moves::Mover
{
36
37
public
:
38
39
///@brief
40
RollMover
();
41
42
RollMover
(
43
core::Size
start_res,
44
core::Size
stop_res,
45
core::Real
min_angle,
46
core::Real
max_angle,
47
numeric::xyzVector< core::Real >
axis,
48
numeric::xyzVector< core::Real >
translate
49
);
50
51
virtual
~RollMover
();
52
53
virtual
void
apply
(
core::pose::Pose
& pose );
54
void
set_min_max_angles
(
core::Real
min_angle,
core::Real
max_angle );
55
virtual
std::string
get_name
()
const
;
56
57
///@brief required in the context of the parser/scripting scheme
58
virtual
moves::MoverOP
fresh_instance
()
const
;
59
60
///@brief required in the context of the parser/scripting scheme
61
virtual
moves::MoverOP
clone
()
const
;
62
63
virtual
64
void
65
parse_my_tag
(
66
TagPtr
const
/*tag*/
,
67
moves::DataMap
&
/*data*/
,
68
Filters_map
const
&
/*filters*/
,
69
moves::Movers_map
const
&
/*movers*/
,
70
Pose
const
&
/*pose*/
);
71
72
73
74
private
:
75
76
core::Size
start_res_
;
77
core::Size
stop_res_
;
78
core::Real
angle_
;
79
core::Real
min_angle_
;
80
core::Real
max_angle_
;
81
numeric::xyzVector< core::Real >
axis_
;
82
numeric::xyzVector< core::Real >
translate_
;
83
};
//end RollMover
84
85
86
}
//namespace rigid
87
}
//namespace protocols
88
89
#endif
Generated on Sat Jun 1 2013 12:09:31 for Rosetta 3.5 by
1.8.4