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
PlacementMinimizationMover.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/PlacementMinimizationMover.hh
11
/// @brief definition of a class for making the placement auction used by PlaceSimultaneouslyMover
12
/// @author Sarel Fleishman (sarelf@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_movers_PlacementMinimizationMover_hh
15
#define INCLUDED_protocols_protein_interface_design_movers_PlacementMinimizationMover_hh
16
17
// Project Headers
18
#include <
core/pose/Pose.fwd.hh
>
19
#include <
core/types.hh
>
20
#include <utility/tag/Tag.fwd.hh>
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
#include <
protocols/filters/Filter.fwd.hh
>
23
#include <
protocols/moves/Mover.fwd.hh
>
24
#include <
protocols/protein_interface_design/movers/PlacementMinimizationMover.fwd.hh
>
25
#include <utility/vector1.fwd.hh>
26
27
#include <
protocols/hotspot_hashing/HotspotStub.fwd.hh
>
28
#include <
protocols/hotspot_hashing/HotspotStubSet.fwd.hh
>
29
#include <utility/vector1.hh>
30
31
//Auto Headers
32
#include <
protocols/simple_moves/DesignRepackMover.hh
>
33
34
35
36
namespace
protocols {
37
namespace
protein_interface_design {
38
namespace
movers {
39
40
/// @brief a simple rb-minimization in a bb-stub constraint biased forcefield.
41
/// Note that this mover is dependent on a placement mover for setting its stubsets
42
class
PlacementMinimizationMover
:
public
simple_moves::DesignRepackMover
43
{
44
public
:
45
typedef
std::pair< protocols::hotspot_hashing::HotspotStubSetOP, std::pair< protocols::hotspot_hashing::HotspotStubOP, core::Size > >
StubSetStubPos
;
46
public
:
47
PlacementMinimizationMover
();
48
void
apply
(
core::pose::Pose
& pose );
49
virtual
std::string
get_name
()
const
;
50
void
refresh_bbstub_constraints
(
core::pose::Pose
& pose );
51
protocols::moves::MoverOP
clone
()
const
;
52
protocols::moves::MoverOP
fresh_instance
()
const
;
53
virtual
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
54
protocols::moves::DataMap
&,
55
protocols::filters::Filters_map
const
&,
56
protocols::moves::Movers_map
const
&,
57
core::pose::Pose
const
& );
58
//// mutators for Placement movers to copy their internals onto auctionMover
59
void
host_chain
(
core::Size
const
hc );
60
//void max_cb_cb_dist( core::Real const mccd );
61
void
cb_force
(
core::Real
const
cf );
62
void
stub_sets
(
utility::vector1< StubSetStubPos >
const
&
stub_sets
);
63
~PlacementMinimizationMover
();
64
private
:
65
core::Size
host_chain_
;
66
utility::vector1< StubSetStubPos >
stub_sets_
;
67
core::Real
cb_force_
;
68
};
69
70
}
//movers
71
}
//protein_interface_design
72
}
//protocols
73
74
#endif
/*INCLUDED_protocols_protein_interface_design_movers_PlacementMinimization_HH*/
75
Generated on Sat Jun 1 2013 12:06:00 for Rosetta 3.5 by
1.8.4