Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MatcherMover.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/MatherMover.hh
12 /// @brief mover wrapper for the matcher
13 /// @author Florian Richter, floric@u.washington.edu, june 2010
14 
15 #ifndef INCLUDED_protocols_match_MatcherMover_hh
16 #define INCLUDED_protocols_match_MatcherMover_hh
17 
18 // Unit headers
20 
21 // Package headers
22 
23 // Project headers
24 #include <protocols/moves/Mover.hh>
25 
26 #include <core/types.hh>
27 
28 #include <core/pose/Pose.fwd.hh>
30 
31 // Utility headers
32 #include <utility/vector1.hh>
33 
34 namespace protocols {
35 namespace match {
36 
38 public:
39 
40  typedef core::Real Real;
41  typedef core::Size Size;
42 
44 
49 
50 public:
51 
52 
53  /// Construction and Destruction
54  MatcherMover( bool incorporate_matches_into_pose = true );
55  virtual ~MatcherMover();
56 
57  /// @brief copy constructor
58  MatcherMover( MatcherMover const & rval );
59 
60 
61 public: // virtual constructors
62 
63 
64  /// @brief clone this object
65  virtual
66  MoverOP clone() const;
67 
68 
69  /// @brief create this type of object
70  virtual
71  MoverOP fresh_instance() const;
72 
73  virtual
74  void parse_my_tag( TagPtr const tag,
75  DataMap &,
76  Filters_map const &,
77  Movers_map const &,
78  Pose const & );
79 
80 
81 public:
82 
83  void
84  apply(
85  core::pose::Pose & pose );
86 
88  get_name() const;
89 
90  void
91  set_ligres(
93 
94  void
96  utility::vector1< core::Size > const & match_positions );
97 
98 
99 private:
100 
101  //dictates whether matches will be output to disk
102  //or one of them will be incorporated into the pose
104 
107 
108 };
109 
110 }
111 }
112 
113 #endif