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
ScoreEvaluator.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 relax_initialization_protocols
11
/// @brief initialization protocols for relax
12
/// @detailed
13
/// Contains currently: Classic Abinitio
14
///
15
///
16
/// @author Oliver Lange
17
18
19
20
#ifndef INCLUDED_protocols_simple_filters_ScoreEvaluator_hh
21
#define INCLUDED_protocols_simple_filters_ScoreEvaluator_hh
22
23
24
// Unit Headers
25
// #include <protocols/simple_filters/ScoreEvaluator.fwd.hh>
26
27
// Package Headers
28
#include <
protocols/evaluation/PoseEvaluator.hh
>
29
// AUTO-REMOVED #include <protocols/simple_filters/RDC_Evaluator.hh>
30
// Project Headers
31
#include <
core/io/silent/silent.fwd.hh
>
32
#include <
core/pose/Pose.fwd.hh
>
33
// AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
34
// AUTO-REMOVED #include <protocols/evaluation/util.hh>
35
#include <
core/scoring/rms_util.hh
>
36
37
#include <
core/scoring/ScoreFunction.fwd.hh
>
38
#include <
protocols/simple_filters/RDC_Evaluator.fwd.hh
>
39
#include <utility/vector1.hh>
40
41
42
// ObjexxFCL Headers
43
44
// Utility headers
45
46
47
//// C++ headers
48
49
namespace
protocols {
50
namespace
simple_filters {
51
52
///@brief that rewrites the whole pss struct all previous entries will be lost... probably not what one wants...
53
class
ScoreEvaluator
:
public
evaluation::SingleValuePoseEvaluator
< core::Real > {
54
public
:
55
ScoreEvaluator
(
std::string
tag,
core::scoring::ScoreFunctionOP
scorefxn,
bool
fullname=
false
);
56
~ScoreEvaluator
();
57
virtual
core::Real
58
apply
(
core::pose::Pose
& pose )
const
;
59
virtual
bool
applicable
(
core::pose::Pose
const
&pose )
const
;
60
protected
:
61
core::scoring::ScoreFunctionOP
scorefxn_
;
62
63
};
64
65
class
TruncatedScoreEvaluator
:
public
ScoreEvaluator
{
66
public
:
67
68
TruncatedScoreEvaluator
(
std::string
tag,
core::scoring::ResidueSelectionVector
const
&,
core::scoring::ScoreFunctionOP
scorefxn=NULL,
bool
fullname=
false
);
69
virtual
~TruncatedScoreEvaluator
();
70
///@brief evaluate pose
71
virtual
core::Real
apply
(
core::pose::Pose
& )
const
;
72
private
:
73
core::scoring::ResidueSelectionVector
selection_
;
74
mutable
core::scoring::ResidueSelectionVector
exclude_list_
;
75
mutable
Size
nres_
;
76
SelectRDC_EvaluatorOP
rdcs_
;
77
};
78
79
}
80
}
81
82
#endif
Generated on Sat Jun 1 2013 12:14:37 for Rosetta 3.5 by
1.8.4