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
NMerPSSMEnergyFilter.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/NMerPSSMEnergyFilter.hh
11
/// @brief definition of filter class NMerPSSMEnergyFilter.
12
/// @author Chris King (chrisk1@uw.edu)
13
14
#ifndef INCLUDED_protocols_simple_filters_NMerPSSMEnergyFilter_hh
15
#define INCLUDED_protocols_simple_filters_NMerPSSMEnergyFilter_hh
16
17
//unit headers
18
#include <
protocols/simple_filters/NMerPSSMEnergyFilter.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/methods/NMerPSSMEnergy.hh
>
28
29
namespace
protocols {
30
namespace
simple_filters {
31
32
class
NMerPSSMEnergyFilter
:
public
filters::Filter
33
{
34
public
:
35
//default ctor
36
NMerPSSMEnergyFilter
();
37
//full ctor
38
NMerPSSMEnergyFilter
(
39
core::Real
const
score_type_threshold,
40
std::string
string_resnums
41
);
42
bool
apply
(
core::pose::Pose
const
& pose )
const
;
43
filters::FilterOP
clone
()
const
{
44
return
new
NMerPSSMEnergyFilter
( *
this
);
45
}
46
filters::FilterOP
fresh_instance
()
const
{
47
return
new
NMerPSSMEnergyFilter
();
48
}
49
50
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
51
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
52
core::Real
compute_residue
(
core::pose::Pose
const
& pose,
core::Size
const
seqpos )
const
;
53
core::Real
compute
(
core::pose::Pose
const
&pose )
const
;
54
virtual
~NMerPSSMEnergyFilter
();
55
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
& );
56
private
:
57
core::Real
score_type_threshold_
;
58
std::string
string_resnums_
;
59
core::scoring::methods::NMerPSSMEnergy
energy_method_
;
60
};
61
62
}
63
}
64
65
#endif
Generated on Sat Jun 1 2013 12:13:41 for Rosetta 3.5 by
1.8.4