Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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
22 
23 // Package Headers
24 #include <protocols/moves/Mover.hh>
25 
26 // Project Headers
27 #include <core/pose/Pose.hh>
30 
31 // Parser headers
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 
43 public:
44 
47  typedef core::Real Real;
48  typedef core::Size Size;
50 
55 
56 
57 public:// constructor/destructor
58 
59  // @brief default constructor
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:
85 
86 
87 };
88 
89 } // fldsgn
90 } // protocols
91 
92 #endif