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_filters
ResidueIEFilter.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/simple_filters/ResidueIEFilter.hh
11
/// @brief definition of filter class ResidueIEFilter.
12
/// @author Sagar Khare (khares@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_simple_filters_ResidueIEFilter_hh
15
#define INCLUDED_protocols_simple_filters_ResidueIEFilter_hh
16
17
#include <
protocols/simple_filters/ResidueIEFilter.fwd.hh
>
18
#include <
protocols/filters/Filter.hh
>
19
#include <utility/tag/Tag.fwd.hh>
20
#include <
protocols/moves/DataMap.fwd.hh
>
21
#include <
protocols/moves/Mover.fwd.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <
core/scoring/ScoreType.hh
>
24
#include <
core/scoring/ScoreFunction.hh
>
25
#include <utility/vector1.hh>
26
27
namespace
protocols {
28
namespace
simple_filters {
29
30
class
ResidueIEFilter
:
public
filters::Filter
31
{
32
public
:
33
ResidueIEFilter
() : filters::
Filter
(
"ResidueIE"
) {}
34
35
ResidueIEFilter
(
utility::vector1<core::Size>
const
resnums
,
std::string
const
restype,
core::scoring::ScoreFunctionCOP
scorefxn
,
36
core::scoring::ScoreType
const
score_type
,
core::Real
const
threshold
,
37
bool
const
whole_pose =
false
,
bool
const
whole_interface =
false
,
core::Size
const
rb_jump = 1,
38
core::Real
const
interface_distance_cutoff = 8.0 ,
core::Real
max_penalty = 0.0,
core::Real
penalty_factor = 1.0 );
39
40
ResidueIEFilter
(
ResidueIEFilter
const
&
init
);
41
bool
apply
(
core::pose::Pose
const
& pose )
const
;
42
filters::FilterOP
clone
()
const
{
43
return
new
ResidueIEFilter
( *
this
);
44
}
45
filters::FilterOP
fresh_instance
()
const
{
46
return
new
ResidueIEFilter
();
47
}
48
49
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
50
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
51
core::Real
compute
(
core::pose::Pose
const
& pose )
const
;
52
virtual
~ResidueIEFilter
();
53
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
&,
filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
54
utility::vector1<core::Size>
resnums
()
const
;
55
core::scoring::ScoreFunctionOP
scorefxn
()
const
;
56
core::scoring::ScoreType
score_type
()
const
;
57
core::Real
threshold
()
const
;
58
void
resnums
(
utility::vector1<core::Size>
const
& rn );
59
void
scorefxn
(
core::scoring::ScoreFunctionOP
scorefxn
);
60
void
score_type
(
core::scoring::ScoreType
score_type
);
61
void
threshold
(
core::Real
const
th );
62
private
:
63
mutable
utility::vector1<core::Size>
resnums_
;
64
std::string
restype_
;
65
core::scoring::ScoreFunctionOP
scorefxn_
;
66
core::scoring::ScoreType
score_type_
;
67
core::Real
threshold_
;
68
bool
whole_pose_
;
69
bool
whole_interface_
;
70
core::Size
rb_jump_
;
71
core::Real
interface_distance_cutoff_
;
72
core::Real
max_penalty_
;
73
core::Real
penalty_factor_
;
74
bool
use_resE_
;
75
76
};
77
78
}
79
}
80
81
#endif
Generated on Sat Jun 1 2013 12:14:09 for Rosetta 3.5 by
1.8.4