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
docking
DockMCMProtocol.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 docking_initialization_protocols
11
/// @brief initialization protocols for docking
12
/// @detailed
13
/// This contains the functions that create initial positions for docking
14
/// You can either randomize partner 1 or partner 2, spin partner 2, or
15
/// perform a simple perturbation.
16
/// @author Monica Berrondo
17
/// @author Modified by Sergey Lyskov
18
19
20
#ifndef INCLUDED_protocols_docking_DockMCMProtocol_hh
21
#define INCLUDED_protocols_docking_DockMCMProtocol_hh
22
23
// Unit Headers
24
#include <
protocols/docking/DockingHighRes.hh
>
25
#include <
protocols/docking/DockMCMProtocol.fwd.hh
>
26
// AUTO-REMOVED #include <protocols/docking/DockMCMCycle.hh>
27
28
// Package headers
29
#include <
core/pose/Pose.fwd.hh
>
30
31
#include <
protocols/docking/DockFilters.fwd.hh
>
32
33
#include <
protocols/docking/DockMCMCycle.fwd.hh
>
34
#include <utility/vector1.hh>
35
#include <
core/kinematics/MoveMap.fwd.hh
>
36
37
namespace
protocols {
38
namespace
docking
{
39
40
class
DockMCMProtocol
:
public
DockingHighRes
41
{
42
typedef
core::Real
Real
;
43
public
:
44
45
/// @brief Default constructor
46
DockMCMProtocol
();
47
48
/// @brief Constructor with one argument - the jump number.
49
DockMCMProtocol
(
50
core::Size
const
rb_jump
51
);
52
53
/// @brief Constructor with three arguments. The first is the jump number, the second is the docking scorefunction
54
/// and the third is the packing scorefxn.
55
DockMCMProtocol
(
56
core::Size
const
rb_jump,
57
core::scoring::ScoreFunctionOP
scorefxn
,
58
core::scoring::ScoreFunctionOP
scorefxn_pack
59
);
60
61
/// @brief Constructor with two arguments. The first is the DockJumps, the second is a scorefunction that will be
62
/// used for docking and packing.
63
DockMCMProtocol
(
64
DockJumps
const
movable_jumps
,
65
core::scoring::ScoreFunctionOP
scorefxn
66
);
67
68
/// @brief Constructor with three arguments. The first is the DockJumps, the second is the docking scorefunction
69
/// and the third is the packing scorefunction.
70
DockMCMProtocol
(
71
DockJumps
const
movable_jumps
,
72
core::scoring::ScoreFunctionOP
scorefxn
,
73
core::scoring::ScoreFunctionOP
scorefxn_pack
74
);
75
76
// destructor
77
~DockMCMProtocol
();
78
79
//clone
80
protocols::moves::MoverOP
clone
()
const
;
81
82
/// @brief Performs the setup specific to this subclass of DockingHighRes (sets up filters).
83
void
init
();
84
85
void
set_filter
(
DockingHighResFilterOP
filter );
86
87
// protocol functions
88
virtual
void
apply
(
core::pose::Pose
& pose );
89
virtual
std::string
get_name
()
const
;
90
91
void
set_move_map
(
core::kinematics::MoveMapOP
movemap );
92
void
set_second_cycle
(
Size
const
& num);
93
void
set_first_cycle
(
Size
const
& num);
94
95
core::scoring::ScoreFunctionCOP
scorefxn_docking
()
const
;
96
core::scoring::ScoreFunctionCOP
scorefxn_packing
()
const
;
97
friend
std::ostream &
operator<<
(std::ostream& out,
const
DockMCMProtocol
& dmp );
98
99
private
:
100
DockingHighResFilterOP
filter_
;
101
DockMCMCycleOP
dock_mcm_
;
//JQX: make it as a memmber
102
bool
movemap_reset_
;
103
core::kinematics::MoveMapOP
movemap_
;
104
Size
num_of_first_cycle_
;
105
Size
num_of_second_cycle_
;
106
};
107
108
}
// docking
109
}
// protocols
110
111
#endif
Generated on Sat Jun 1 2013 11:47:20 for Rosetta 3.5 by
1.8.4