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
surface_docking
FullatomRelaxMover.hh
Go to the documentation of this file.
1
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;
2
// rm-trailing-spaces:t -*-
3
// vi: set ts=2 noet:
4
//
5
// (c) Copyright Rosetta Commons Member Institutions.
6
// (c) This file is part of the Rosetta software suite and is made available
7
// under license.
8
// (c) The Rosetta software is developed by the contributing members of the
9
// Rosetta Commons.
10
// (c) For more information, see http://www.rosettacommons.org.
11
// Questions about this can be
12
// (c) addressed to University of Washington UW TechTransfer,
13
// email: license@u.washington.edu.
14
15
/// @file FullatomRelaxMover.hh
16
/// @brief
17
/// @author Robin A Thottungal (rathottungal@gmail.com)
18
19
#ifndef INCLUDED_protocols_surface_docking_FullatomRelaxMover_hh
20
#define INCLUDED_protocols_surface_docking_FullatomRelaxMover_hh
21
22
// Unit Headers
23
#include <
protocols/surface_docking/FullatomRelaxMover.fwd.hh
>
24
// Package headers
25
#include <
protocols/surface_docking/SurfaceParameters.fwd.hh
>
26
// Project headers
27
#include <
protocols/moves/Mover.fwd.hh
>
28
#include <
protocols/moves/Mover.hh
>
29
#include <
protocols/moves/MoverStatus.hh
>
30
#include <
core/types.hh
>
31
#include <
core/pose/Pose.fwd.hh
>
32
#include <utility/tag/Tag.fwd.hh>
33
#include <
protocols/filters/Filter.fwd.hh
>
34
#include <
protocols/moves/DataMap.fwd.hh
>
35
#include <
core/scoring/ScoreFunction.fwd.hh
>
36
#include <
core/kinematics/MoveMap.hh
>
37
#include <
core/kinematics/MoveMap.fwd.hh
>
38
#include <
protocols/simple_moves/MinMover.fwd.hh
>
39
#include <
protocols/simple_moves/BackboneMover.fwd.hh
>
40
#include <
protocols/moves/TrialMover.hh
>
41
#include <
protocols/moves/MonteCarlo.hh
>
42
#include <
protocols/moves/MonteCarlo.fwd.hh
>
43
#include <
protocols/moves/MoverContainer.fwd.hh
>
44
#include <
protocols/docking/DockingHighRes.hh
>
45
#include <
core/types.hh
>
46
#include <utility/vector1_bool.hh>
47
48
49
// Utility Headers
50
#include <utility/pointer/ReferenceCount.hh>
51
#include <utility/vector1.fwd.hh>
52
53
// C++ Headers
54
#include <string>
55
#include <map>
56
#include <list>
57
58
//Auto Headers
59
#include <sstream>
60
61
62
63
namespace
protocols {
64
namespace
surface_docking {
65
66
class
FullatomRelaxMover
:
public
moves::Mover
{
67
68
public
:
69
70
FullatomRelaxMover
();
71
72
//destructor
73
~FullatomRelaxMover
();
74
75
// virtual functions that get overloaded or
76
// called from the inheriting classes
77
void
apply
(
core::pose::Pose
& );
78
79
virtual
std::string
get_name
()
const
;
80
81
//virtual void setup_list( core::pose::Pose & ) = 0;
82
83
//virtual void set_angles( core::Real ) = 0;
84
85
//virtual bool make_move( core::pose::Pose & ) = 0;
86
87
// Undefined, commenting out to fix PyRosetta build void angle_max(const core::Real);
88
89
// Undefined, commenting out to fix PyRosetta build void angle_max(const char,const core::Real);
90
91
void
set_nmoves
(
const
core::Size
);
92
93
void
setup_defaults
();
94
95
// Undefined, commenting out to fix PyRosetta build void setup_shearTrialMover();
96
97
// Undefined, commenting out to fix PyRosetta build void setup_smallTrialMover();
98
99
void
setupMovers
();
100
101
void
FinalizeMovers
(
core::pose::Pose
&);
102
103
void
init_from_options
();
104
105
void
set_smallmovesize
(
Size
scale);
106
107
void
set_ljrepulsion_weight
(
core::Real
weight_scale);
108
109
void
set_ecounter
(
core::Size
ecount);
110
111
void
CalcSecondayStruct
(
core::pose::Pose
& pose);
112
113
114
std::string
getSecondayStruct
();
115
116
public
:
117
typedef
core::Real
Real
;
118
private
:
119
120
// Options
121
bool
benchmark_
;
122
123
//members for smallTrialMove
124
core::Real
temperature_
;
125
core::Real
kT_
;
126
core::Size
nmoves_
;
127
core::Size
encounter_
;
128
core::Size
encounter_cycle_
;
129
130
std::map< char, core::Real >
angle_max_
;
131
// for scoring
132
core::scoring::ScoreFunctionOP
score_high_res_
;
133
// for movers
134
135
std::string
smallmin_type_
;
136
std::string
shearmin_type_
;
137
138
core::kinematics::MoveMapOP
moveMapOP_
;
139
core::kinematics::MoveMapOP
smallmoveMapOP_
;
140
core::kinematics::MoveMapOP
shearmoveMapOP_
;
141
142
moves::MonteCarloOP
monteCarlo_
;
143
moves::MonteCarloOP
smallmonteCarlo_
;
144
moves::MonteCarloOP
shearmonteCarlo_
;
145
146
simple_moves::SmallMoverOP
smallmover_
;
147
simple_moves::MinMoverOP
smallminmover_
;
148
moves::SequenceMoverOP
smallsequenceMover_
;
149
moves::TrialMoverOP
small_trial_min_mover_
;
150
151
simple_moves::ShearMoverOP
shearmover_
;
152
simple_moves::MinMoverOP
shearminmover_
;
153
moves::SequenceMoverOP
shearsequenceMover_
;
154
moves::TrialMoverOP
shear_trial_min_mover_
;
155
156
157
//protocols::docking::DockingHighResOP dockingHigh_res_;
158
std::string
SecStruct_
;
159
};
160
161
162
}
// surfaceDockingProtocols
163
}
// protocols
164
165
#endif
Generated on Sat Jun 1 2013 12:18:38 for Rosetta 3.5 by
1.8.4