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
BackrubDDMover.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/BackrubDDMover.hh
11
/// @brief Derived class from mover for dock design with backrub moves
12
/// @author Sarel Fleishman (sarelf@u.washington.edu), Eva-Maria Strauch (evas01@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_hh
15
#define INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_hh
16
17
// Project Headers
18
#include <
core/pose/Pose.fwd.hh
>
19
#include <
core/types.hh
>
20
#include <
protocols/moves/DataMap.fwd.hh
>
21
22
#include <utility/vector1.hh>
23
24
//Auto Headers
25
#include <
protocols/simple_moves/DesignRepackMover.hh
>
26
27
28
// C++ headers
29
30
namespace
protocols {
31
namespace
protein_interface_design {
32
namespace
movers {
33
34
class
BackrubDDMover
:
public
simple_moves::DesignRepackMover
35
{
36
public
:
37
typedef
core::scoring::ScoreFunctionCOP
ScoreFunctionCOP
;
38
typedef
core::scoring::ScoreFunctionOP
ScoreFunctionOP
;
39
typedef
core::pose::Pose
Pose
;
40
public
:
41
BackrubDDMover
();
42
BackrubDDMover
(
43
ScoreFunctionCOP
scorefxn,
44
bool
const
backrub_partner1,
45
bool
const
backrub_partner2,
46
core::Real
const
interface_distance_cutoff,
47
core::Size
const
backrub_moves,
48
core::Real
const
mc_kt,
49
core::Real
const
sidechain_move_prob,
50
std::vector< core::Size >
const
& residues );
51
void
apply
(
Pose
& pose );
52
virtual
std::string
get_name
()
const
;
53
protocols::moves::MoverOP
clone
()
const
;
54
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
BackrubDDMover
); }
55
virtual
~BackrubDDMover
();
56
protected
:
57
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
&,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
58
private
:
59
bool
backrub_partner1_
;
60
bool
backrub_partner2_
;
61
core::Real
interface_distance_cutoff_
;
62
core::Size
backrub_moves_
;
63
core::Real
mc_kt_
;
64
core::Real
sidechain_move_prob_
;
65
core::Real
small_move_prob_
;
66
core::Real
bbg_move_prob_
;
67
std::vector< core::Size >
residues_
;
68
};
69
70
}
// movers
71
}
// protein_interface_design
72
}
// protocols
73
74
#endif
/*INCLUDED_protocols_protein_interface_design_movers_BackrubDDMover_HH*/
75
Generated on Sat Jun 1 2013 12:04:27 for Rosetta 3.5 by
1.8.4