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
ShoveResidueMover.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/ShoveResidueMover.hh
11
/// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12
13
#ifndef INCLUDED_protocols_protein_interface_design_movers_ShoveResidueMover_hh
14
#define INCLUDED_protocols_protein_interface_design_movers_ShoveResidueMover_hh
15
16
#include <
core/types.hh
>
17
#include <
core/pose/Pose.fwd.hh
>
18
#include <utility/tag/Tag.fwd.hh>
19
#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
ShoveResidueMover
:
public
protocols::moves::Mover
{
31
public
:
32
ShoveResidueMover
();
33
ShoveResidueMover
(
core::Size
resnum );
34
35
void
apply
(
core::pose::Pose
& pose );
36
virtual
std::string
get_name
()
const
;
37
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
38
protocols::moves::DataMap
&,
39
protocols::filters::Filters_map
const
&,
40
protocols::moves::Movers_map
const
&,
41
core::pose::Pose
const
& );
42
43
protocols::moves::MoverOP
clone
()
const
{
return
new
ShoveResidueMover
( *
this
); }
44
protocols::moves::MoverOP
fresh_instance
()
const
{
return
new
ShoveResidueMover
; }
45
46
private
:
47
bool
remove_shove_variant_
;
48
core::Size
resnum_
;
49
utility::vector1< core::Size >
shove_residues_
;
// a list of residues for which to use the shove_bb atom type, so that backbone atoms might clash.
50
};
51
52
53
}
//movers
54
}
// protein_interface_design
55
}
// protocols
56
57
58
#endif
/*INCLUDED_protocols_protein_interface_design_movers_ShoveResidueMover_HH*/
59
Generated on Sat Jun 1 2013 12:07:09 for Rosetta 3.5 by
1.8.4