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
protein_interface_design
movers
SpinMover.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/protein_interface_design/movers/SpinMover.hh
11
/// author Eva-Maria Strauch ( evas01@u.washington.edu )
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_SpinMover_HH
14
#define INCLUDED_protocols_protein_interface_design_movers_SpinMover_HH
15
16
#include <
core/types.hh
>
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <utility/tag/Tag.fwd.hh>
19
// AUTO-REMOVED #include <protocols/filters/Filter.hh>
20
#include <
protocols/moves/Mover.hh
>
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
23
#include <utility/vector1.hh>
24
25
26
namespace
protocols {
27
namespace
protein_interface_design {
28
namespace
movers {
29
30
class
SpinMover
:
public
protocols::moves::Mover
31
{
32
public
:
33
typedef
core::pose::Pose
Pose
;
34
// typedef core::conformation::Residue Residue;
35
36
public
:
37
SpinMover
();
38
SpinMover
(
core::Size
jump_num );
39
/// @param jump_num The jump number of the interface. 0 for no interface
40
/// @note Pass everything through the final filter (True Filter)
41
42
void
apply
(
core::pose::Pose
& pose );
43
virtual
std::string
get_name
()
const
;
44
//virtual std::string protocols::moves::Mover::get_name();
45
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
46
protocols::moves::DataMap
&,
47
protocols::filters::Filters_map
const
&,
48
protocols::moves::Movers_map
const
&,
49
core::pose::Pose
const
& );
50
51
protocols::moves::MoverOP
clone
()
const
{
return
(
protocols::moves::MoverOP
(
new
SpinMover
( *
this
) ) ); }
52
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
SpinMover
); }
53
virtual
~SpinMover
() {};
54
private
:
55
core::Size
jump_num_
;
56
};
57
58
59
}
//movers
60
}
// protein_interface_design
61
}
// protocols
62
63
64
#endif
/*INCLUDED_protocols_protein_interface_design_movers_SpinMover_HH*/
65
Generated on Sat Jun 1 2013 12:07:13 for Rosetta 3.5 by
1.8.4