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
simple_moves
AddConstraintsToCurrentConformationMover.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
11
/// @brief Add constraints to the current pose conformation.
12
/// @author Yifan Song
13
14
#ifndef INCLUDED_protocols_simple_moves_AddConstraintsToCurrentConformationMover_hh
15
#define INCLUDED_protocols_simple_moves_AddConstraintsToCurrentConformationMover_hh
16
17
#include <
protocols/moves/Mover.hh
>
18
#include <
core/pack/task/TaskFactory.fwd.hh
>
19
20
21
namespace
protocols {
22
namespace
simple_moves {
23
24
class
AddConstraintsToCurrentConformationMover
:
public
moves::Mover
{
25
26
public
:
27
typedef
core::pack::task::TaskFactoryCOP
TaskFactoryCOP
;
28
29
AddConstraintsToCurrentConformationMover
();
30
virtual
~AddConstraintsToCurrentConformationMover
();
31
32
virtual
void
apply
(
core::pose::Pose
& );
33
virtual
std::string
get_name
()
const
;
34
35
void
task_factory
(
TaskFactoryCOP
tf );
36
37
virtual
moves::MoverOP
clone
()
const
;
38
virtual
moves::MoverOP
fresh_instance
()
const
;
39
40
virtual
void
41
parse_my_tag
(
TagPtr
const
,
moves::DataMap
&,
Filters_map
const
&,
moves::Movers_map
const
&,
Pose
const
& );
42
43
///@brief parse "task_operations" XML option (can be employed virtually by derived movers)
44
virtual
void
parse_task_operations
(
45
TagPtr
const
,
46
moves::DataMap
const
&,
47
Filters_map
const
&,
48
moves::Movers_map
const
&,
49
Pose
const
& );
50
51
private
:
52
// pointers to data that are passed in
53
TaskFactoryCOP
task_factory_
;
54
55
bool
use_distance_cst_
;
56
core::Real
cst_weight_
;
57
core::Real
max_distance_
;
58
core::Real
coord_dev_
;
59
core::Real
bound_width_
;
60
core::Size
min_seq_sep_
;
61
62
};
63
64
}
// moves
65
}
// protocols
66
67
#endif
Generated on Sat Jun 1 2013 12:14:55 for Rosetta 3.5 by
1.8.4