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
abinitio
AbrelaxMover.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/abinitio/AbrelaxMover.cc
11
/// @author Oliver Lange
12
/// @author Christopher Miles (cmiles@uw.edu)
13
/// @brief This class will be handled to a SampleProtocol as a control instance
14
/// @detailed responsibilities:
15
/// know which chainbreaks to penalize and close
16
/// know which jumps to use during sampling, which (if any) to keep after loop-closing
17
/// supply a JumpMover if jumps should be moved
18
/// supply a MoveMap
19
/// supply a "StrictMoveMap": the protocol should not move anything that is dissallowed in strict_movemap(),
20
/// it should try to move just stuff in movemap()
21
22
#ifndef INCLUDED_protocols_abinitio_AbrelaxMover_hh
23
#define INCLUDED_protocols_abinitio_AbrelaxMover_hh
24
25
// Unit Headers
26
#include <
protocols/abinitio/AbrelaxMover.fwd.hh
>
27
// AUTO-REMOVED #include <protocols/abinitio/FragmentSampler.hh>
28
#include <
protocols/moves/Mover.hh
>
29
#include <
protocols/loops/loop_closure/ccd/SlidingWindowLoopClosure.fwd.hh
>
30
#include <
protocols/relax/RelaxProtocolBase.fwd.hh
>
31
32
// Package Headers
33
#include <
protocols/topology_broker/TopologyBroker.fwd.hh
>
34
// AUTO-REMOVED #include <protocols/checkpoint/CheckPointer.hh>
35
36
// Project Headers
37
#include <
core/types.hh
>
38
#include <
core/pose/Pose.fwd.hh
>
39
40
// C++ headers
41
#include <string>
42
43
#include <
protocols/abinitio/FragmentSampler.fwd.hh
>
44
#include <utility/vector1.hh>
45
46
47
namespace
protocols {
48
namespace
abinitio {
49
50
class
AbrelaxMover
:
public
moves::Mover
{
51
public
:
52
AbrelaxMover
();
53
54
virtual
~AbrelaxMover
();
55
56
virtual
void
apply
(
core::pose::Pose
&pose );
57
58
virtual
std::string
get_name
()
const
;
59
60
void
set_defaults
();
61
62
void
clear
();
//set's all pointers to zero
63
64
virtual
moves::MoverOP
fresh_instance
()
const
{
return
new
AbrelaxMover
(); }
65
66
FragmentSamplerOP
sampling_protocol
();
67
68
relax::RelaxProtocolBaseCOP
relax_protocol
()
const
;
69
70
relax::RelaxProtocolBaseOP
relax_protocol
();
71
72
loops::loop_closure::ccd::SlidingWindowLoopClosureOP
closure_protocol
();
73
74
void
sampling_protocol
(
FragmentSamplerOP
set);
75
76
void
relax_protocol
(
relax::RelaxProtocolBaseOP
set );
77
78
void
closure_protocol
(
loops::loop_closure::ccd::SlidingWindowLoopClosureOP
set );
79
80
void
post_loop_closure_protocol
(
moves::MoverOP
move );
//e.g. to idealize after loop-closing
81
82
void
pre_loop_closure_protocol
(
moves::MoverOP
move );
//e.g. to idealize after loop-closing
83
84
topology_broker::TopologyBrokerOP
topology_broker
();
85
86
private
:
87
void
close_with_idealization
(
core::pose::Pose
&pose);
88
89
topology_broker::TopologyBrokerOP
topology_broker_
;
90
91
FragmentSamplerOP
sampling_protocol_
;
92
loops::loop_closure::ccd::SlidingWindowLoopClosureOP
loop_closure_protocol_
;
93
relax::RelaxProtocolBaseOP
relax_protocol_
;
94
moves::MoverOP
post_loop_closure_protocol_
;
95
moves::MoverOP
pre_loop_closure_protocol_
;
96
97
bool
b_return_unrelaxed_fullatom_
;
98
};
99
100
}
101
}
102
103
#endif // INCLUDED_protocols_abinitio_AbrelaxMover_hh
Generated on Sat Jun 1 2013 11:40:40 for Rosetta 3.5 by
1.8.4