Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetupForSymmetryMover.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file
10 /// @brief
11 /// @author Ingemar Andre
12 
13 
14 #ifndef INCLUDED_protocols_simple_moves_symmetry_SetupForSymmetryMover_hh
15 #define INCLUDED_protocols_simple_moves_symmetry_SetupForSymmetryMover_hh
16 
17 // Unit headers
19 #include <protocols/moves/Mover.hh>
20 #include <core/pose/Pose.fwd.hh>
22 #include <utility/vector1.hh>
23 
24 
25 // Utility Headers
26 
27 namespace protocols {
28 namespace simple_moves{
29 namespace symmetry {
30 
31 ///////////////////////////////////////////////////////////////////////////////
32 
34 {
35 public:
36 
37  // default constructor
39 
41 
43 
45 
46  virtual void apply( core::pose::Pose & pose );
47  virtual void parse_my_tag(
48  utility::tag::TagPtr const tag,
49  moves::DataMap &data,
50  filters::Filters_map const &filters,
51  moves::Movers_map const &movers,
52  core::pose::Pose const & pose );
53 
54  virtual std::string get_name() const;
55 
56  // setter
57  void slide_into_contact(bool val) { slide_ = val; }
58 
59 private:
60  bool slide_;
62 };
63 
64 ///////////////
65 
67 {
68 public:
69 
70  // default constructor
72 
74 
76 
77  virtual void apply( core::pose::Pose & pose );
78  virtual void parse_my_tag(
79  utility::tag::TagPtr const tag,
80  moves::DataMap &data,
81  filters::Filters_map const &filters,
82  moves::Movers_map const &movers,
83  core::pose::Pose const & pose );
84 
85  virtual std::string get_name() const;
86 };
87 
89 {
90 public:
91 
92  // default constructor
94 
96 
98 
99  virtual void apply( core::pose::Pose & pose );
100  virtual void parse_my_tag(
101  utility::tag::TagPtr const tag,
102  moves::DataMap &data,
103  filters::Filters_map const &filters,
104  moves::Movers_map const &movers,
105  core::pose::Pose const & pose );
106 
107  virtual std::string get_name() const;
108 };
109 
110 
111 }
112 } // symmetric_docking
113 } // rosetta
114 #endif