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
match
output
DownstreamRMSEvaluator.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
// :noTabs=false:tabSize=4:indentSize=4:
4
//
5
// (c) Copyright Rosetta Commons Member Institutions.
6
// (c) This file is part of the Rosetta software suite and is made available under license.
7
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9
// (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10
11
/// @file protocols/match/output/DownstreamRMSEvaluator.hh
12
/// @brief
13
/// @author Alex Zanghellini (zanghell@u.washington.edu)
14
/// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
15
16
#ifndef INCLUDED_protocols_match_output_DownstreamRMSEvaluator_hh
17
#define INCLUDED_protocols_match_output_DownstreamRMSEvaluator_hh
18
19
// Unit headers
20
#include <
protocols/match/output/DownstreamRMSEvaluator.fwd.hh
>
21
22
// Package headers
23
#include <
protocols/match/output/MatchEvaluator.hh
>
24
#include <
protocols/match/downstream/DownstreamBuilder.fwd.hh
>
25
26
// Project headers
27
// AUTO-REMOVED #include <core/id/AtomID.hh>
28
#include <
core/pose/Pose.fwd.hh
>
29
30
// Utility headers
31
// AUTO-REMOVED #include <utility/vector1.hh>
32
33
// Numeric headers
34
// AUTO-REMOVED #include <numeric/xyzVector.hh>
35
36
#include <
core/id/AtomID.fwd.hh
>
37
#include <utility/vector1.hh>
38
39
40
41
namespace
protocols {
42
namespace
match
{
43
namespace
output {
44
45
/// @brief In the best of all possible worlds, this class would be sufficiently
46
/// generic such that I could compare RMS for arbitrary subsets of atoms on
47
/// the downstream partner, but in my first pass implementation, I'm writing
48
/// while aiming at the RigidLigandBuilder -- 1 residue -- and I'll compare
49
/// all heavy atoms.
50
class
DownstreamRMSEvaluator
:
public
MatchEvaluator
51
{
52
public
:
53
typedef
core::Size
Size
;
54
typedef
core::Vector
Vector
;
55
typedef
core::id::AtomID
AtomID
;
56
public
:
57
DownstreamRMSEvaluator
();
58
virtual
~DownstreamRMSEvaluator
();
59
60
void
61
set_downstream_pose
(
core::pose::PoseCOP
dspose );
62
63
void
64
set_n_geometric_constraints
(
Size
setting );
65
66
void
67
set_downstream_builder
(
68
Size
which_geom_cst,
69
downstream::DownstreamBuilderCOP
ds_builder
70
);
71
72
virtual
73
Real
74
score
(
match
const
& m )
const
;
75
76
/// @brief Causes a graceful exit. The DownstreamRMSEvaluator is incompatible with
77
/// the match_dspos1 match definition!
78
virtual
79
Real
80
score
(
match_dspos1
const
& m )
const
;
81
82
private
:
83
core::pose::PoseCOP
dspose_
;
84
85
Size
n_geometric_constraints_
;
86
87
utility::vector1< AtomID >
atoms_to_compare_
;
88
utility::vector1< downstream::DownstreamBuilderCOP >
ds_builders_
;
89
90
};
91
92
}
93
}
94
}
95
96
#endif
Generated on Sat Jun 1 2013 11:59:40 for Rosetta 3.5 by
1.8.4