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
fldsgn
MatchResiduesMover.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 protocolsoped 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/fldsgn/MatchResiduesMover.hh
11
/// @brief header file for MatchResiduesMover class
12
// @brief This mover returns the RMSD between a subset of residues of the movered pose against a list of residues in the reference pose.
13
/// @author Javier Castellanos ( javiercv@uw.edu )
14
15
16
#ifndef INCLUDED_protocols_fldsgn_MatchResiduesMover_hh
17
#define INCLUDED_protocols_fldsgn_MatchResiduesMover_hh
18
19
// Unit Headers
20
#include <
protocols/fldsgn/MatchResidues.hh
>
21
#include <
protocols/fldsgn/MatchResiduesMover.fwd.hh
>
22
23
// Package Headers
24
#include <
protocols/moves/Mover.hh
>
25
26
// Project Headers
27
#include <
core/pose/Pose.hh
>
28
#include <
core/pack/task/operation/TaskOperation.fwd.hh
>
29
#include <
core/pack/task/TaskFactory.fwd.hh
>
30
31
// Parser headers
32
#include <
protocols/moves/DataMap.fwd.hh
>
33
#include <utility/tag/Tag.fwd.hh>
34
35
// Boost headers
36
#include <boost/tuple/tuple.hpp>
37
38
39
namespace
protocols {
40
namespace
fldsgn {
41
42
class
MatchResiduesMover
:
public
protocols::fldsgn::MatchResidues
,
public
protocols::moves::Mover
{
43
public
:
44
45
typedef
protocols::moves::Mover
Mover
;
46
typedef
protocols::moves::MoverOP
MoverOP
;
47
typedef
core::Real
Real
;
48
typedef
core::Size
Size
;
49
typedef
core::pose::Pose
Pose
;
50
51
typedef
utility::tag::TagPtr
TagPtr
;
52
typedef
protocols::moves::DataMap
DataMap
;
53
typedef
protocols::filters::Filters_map
Filters_map
;
54
typedef
protocols::moves::Movers_map
Movers_map
;
55
56
57
public
:
// constructor/destructor
58
59
// @brief default constructor
60
MatchResiduesMover
();
61
62
63
virtual
~MatchResiduesMover
();
64
65
// @brief make clone
66
virtual
MoverOP
clone
()
const
;
67
68
// @brief make fresh instance
69
virtual
MoverOP
fresh_instance
()
const
;
70
71
// @brief get name of this mover
72
virtual
std::string
get_name
()
const
{
return
"MatchResiduesMover"
; }
73
74
75
virtual
void
parse_my_tag
(
TagPtr
const
tag,
76
DataMap
& data,
77
Filters_map
const
& filters,
78
Movers_map
const
& movers,
79
Pose
const
& pose);
80
81
virtual
void
apply
(
core::pose::Pose
& pose );
82
83
private
:
84
bool
superimpose_
;
85
86
87
};
88
89
}
// fldsgn
90
}
// protocols
91
92
#endif
Generated on Sat Jun 1 2013 11:50:00 for Rosetta 3.5 by
1.8.4