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
oop
OopMover.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/simple_moves/oop/OopMover.hh
11
/// @brief
12
/// @author Kevin Drew, kdrew@nyu.edu
13
#ifndef INCLUDED_protocols_simple_moves_oop_OopMover_hh
14
#define INCLUDED_protocols_simple_moves_oop_OopMover_hh
15
// Unit Headers
16
#include <
protocols/simple_moves/oop/OopMover.fwd.hh
>
17
// Project Headers
18
#include <
core/pose/Pose.fwd.hh
>
19
#include <
protocols/moves/Mover.hh
>
20
21
// Utility Headers
22
#include <
core/types.hh
>
23
//#include <utility/vector1.hh>
24
25
namespace
protocols {
26
namespace
simple_moves {
27
namespace
oop {
28
29
///@details
30
class
OopMover
:
public
protocols::moves::Mover
{
31
32
public
:
33
34
///@brief
35
OopMover
(
core::Size
oop_seq_position );
36
OopMover
(
core::Size
oop_seq_position,
core::Real
phi_angle,
core::Real
psi_angle );
37
38
virtual
~OopMover
();
39
40
virtual
void
apply
(
core::pose::Pose
& pose );
41
virtual
std::string
get_name
()
const
;
42
43
virtual
void
set_phi
(
core::Real
angle ) {
phi_angle_
= angle; }
44
virtual
void
set_psi
(
core::Real
angle ) {
psi_angle_
= angle; }
45
46
virtual
void
update_hydrogens
(
core::pose::Pose
& pose ) {
update_hydrogens_
( pose ); }
47
48
private
:
49
50
core::Size
const
oop_pre_pos_
;
51
core::Size
const
oop_post_pos_
;
52
core::Real
phi_angle_
;
53
core::Real
psi_angle_
;
54
55
private
:
56
57
void
update_hydrogens_
(
core::pose::Pose
& pose );
58
59
};
//end OopMover
60
61
62
}
//namespace oop
63
}
//namespace simple_moves
64
}
//namespace protocols
65
66
#endif // INCLUDED_protocols_simple_moves_oop_OopMover_hh
Generated on Sat Jun 1 2013 12:16:21 for Rosetta 3.5 by
1.8.4