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
ContactMapEvaluator.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/ContactMapEvaluator.hh
11
/// @brief
12
/// @author James Thompson
13
14
#ifndef INCLUDED_protocols_simple_filters_ContactMapEvaluator_hh
15
#define INCLUDED_protocols_simple_filters_ContactMapEvaluator_hh
16
17
// libRosetta headers
18
#include <
core/types.hh
>
19
#include <
core/pose/Pose.hh
>
20
#include <
protocols/evaluation/PoseEvaluator.hh
>
21
// AUTO-REMOVED #include <boost/dynamic_bitset.hpp>
22
#include <algorithm>
23
24
#include <utility/vector1.hh>
25
26
namespace
protocols {
27
namespace
simple_filters {
28
29
class
ContactMapEvaluator
:
public
evaluation::SingleValuePoseEvaluator
< core::Real > {
30
31
public
:
32
ContactMapEvaluator
(
33
core::pose::Pose
const
& native_pose,
34
core::Real
const
max_dist,
35
core::Size
const
min_seqsep
36
);
37
38
~ContactMapEvaluator
() {}
39
40
virtual
void
apply
(
41
core::pose::Pose
& pose,
42
std::string
tag,
43
core::io::silent::SilentStruct
& ss
44
)
const
;
45
46
virtual
core::Real
apply
(
47
core::pose::Pose
&
/*pose*/
48
)
const
{
49
return
0;
50
}
51
52
private
:
53
core::Real
const
max_dist_
;
54
core::Size
const
min_seqsep_
;
55
core::pose::Pose
native_
;
56
};
57
58
}
// simple_filter
59
}
// protocols
60
61
#endif
Generated on Sat Jun 1 2013 12:13:11 for Rosetta 3.5 by
1.8.4