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
ResidueSetChainEnergyFilter.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/ResidueSetChainEnergyFilter.hh
11
/// @brief definition of filter class ResidueSetChainEnergyFilter.
12
/// @author Chris King (chrisk1@uw.edu)
13
14
#ifndef INCLUDED_protocols_simple_filters_ResidueSetChainEnergyFilter_hh
15
#define INCLUDED_protocols_simple_filters_ResidueSetChainEnergyFilter_hh
16
17
//unit headers
18
#include <
protocols/simple_filters/ResidueSetChainEnergyFilter.fwd.hh
>
19
20
// Project Headers
21
#include <
core/scoring/ScoreFunction.hh
>
22
#include <
core/types.hh
>
23
#include <
protocols/filters/Filter.hh
>
24
#include <
core/pose/Pose.fwd.hh
>
25
#include <
protocols/moves/DataMap.fwd.hh
>
26
#include <
protocols/moves/Mover.fwd.hh
>
27
#include <
core/scoring/ScoreType.hh
>
28
29
30
namespace
protocols {
31
namespace
simple_filters {
32
33
class
ResidueSetChainEnergyFilter
:
public
filters::Filter
34
{
35
public
:
36
//default ctor
37
ResidueSetChainEnergyFilter
();
38
//full ctor
39
ResidueSetChainEnergyFilter
(
core::scoring::ScoreFunctionCOP
scorefxn,
40
core::scoring::ScoreType
const
score_type,
41
core::Real
const
score_type_threshold,
42
std::string
string_resnums,
43
core::Size
chain
44
);
45
bool
apply
(
core::pose::Pose
const
& pose )
const
;
46
filters::FilterOP
clone
()
const
{
47
return
new
ResidueSetChainEnergyFilter
( *
this
);
48
}
49
filters::FilterOP
fresh_instance
()
const
{
50
return
new
ResidueSetChainEnergyFilter
();
51
}
52
53
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
54
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
55
core::Real
compute
(
core::pose::Pose
const
&pose )
const
;
56
virtual
~ResidueSetChainEnergyFilter
();
57
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
&,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
58
private
:
59
core::Real
score_type_threshold_
;
60
core::scoring::ScoreType
score_type_
;
61
core::scoring::ScoreFunctionOP
scorefxn_
;
62
std::string
string_resnums_
;
63
core::Size
chain_
;
64
};
65
66
}
67
}
68
69
#endif
Generated on Sat Jun 1 2013 12:14:12 for Rosetta 3.5 by
1.8.4