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
flxbb
InterlockAroma.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/flxbb/InterlockAroma.hh
11
/// @brief perform cycles of design and relax with filter
12
/// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13
14
#ifndef INCLUDED_protocols_flxbb_InterlockAroma_hh
15
#define INCLUDED_protocols_flxbb_InterlockAroma_hh
16
17
// Unitt Header
18
#include <
protocols/flxbb/InterlockAroma.fwd.hh
>
19
20
// Project Headers
21
#include <
core/types.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <
core/scoring/ScoreFunction.fwd.hh
>
24
25
#include <
protocols/moves/Mover.hh
>
26
#include <utility/tag/Tag.fwd.hh>
27
28
#include <utility/vector1.hh>
29
30
31
namespace
protocols {
32
namespace
flxbb{
33
34
35
///////////////////////////////////////////////////////////////////////////////////////////////////////
36
class
InterlockAroma
:
public
protocols::moves::Mover
{
37
public
:
38
39
40
typedef
protocols::moves::Mover
Super
;
41
42
typedef
std::string
String
;
43
typedef
core::Size
Size
;
44
typedef
core::Real
Real
;
45
typedef
core::pose::Pose
Pose
;
46
typedef
core::scoring::ScoreFunction
ScoreFunction
;
47
typedef
core::scoring::ScoreFunctionOP
ScoreFunctionOP
;
48
typedef
protocols::moves::MoverOP
MoverOP
;
49
50
typedef
utility::tag::TagPtr
TagPtr
;
51
typedef
protocols::filters::Filters_map
Filters_map
;
52
typedef
protocols::moves::DataMap
DataMap
;
53
typedef
protocols::moves::Movers_map
Movers_map
;
54
55
56
public
:
// constructor/destructor
57
58
59
/// @brief default constructor
60
InterlockAroma
();
61
62
/// @brief copy constructor
63
InterlockAroma
(
InterlockAroma
const
& rval );
64
65
/// @brief destructor
66
virtual
~InterlockAroma
();
67
68
69
public
:
// virtual constructors
70
71
72
/// @brief clone this object
73
virtual
74
MoverOP
clone
()
const
;
75
76
77
/// @brief create this type of object
78
virtual
79
MoverOP
fresh_instance
()
const
;
80
81
82
public
:
// virtual main operation
83
84
85
/// @brief mover apply
86
virtual
void
apply
(
Pose
& pose );
87
88
virtual
std::string
get_name
()
const
;
89
90
91
public
:
// parser
92
93
94
virtual
void
parse_my_tag
(
TagPtr
const
tag,
95
DataMap
& data,
96
Filters_map
const
&,
97
Movers_map
const
&,
98
Pose
const
& );
99
100
101
private
:
102
103
104
/// @brief score function
105
ScoreFunctionOP
scorefxn_
;
106
107
/// @brief input secondary structure information
108
String
input_ss_
;
109
110
/// @brief
111
Real
max_repulsion_energy_
;
112
113
/// @brief
114
Real
min_env_energy_
;
115
116
// @brief Exclude aromatic chi2 rotamers, of which angles are around 0
117
bool
limit_aroma_chi2_
;
118
119
// @brief
120
bool
output_pdbs_
;
121
122
// @brief
123
bool
verbose_
;
124
125
126
};
127
128
129
}
// namespace flxbb
130
}
// namespace protocols
131
132
#endif
Generated on Sat Jun 1 2013 11:50:54 for Rosetta 3.5 by
1.8.4