Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SlideTogether.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 developed 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 core/pack/task/ResfileReader.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_SlideTogether_hh
15 #define INCLUDED_protocols_ligand_docking_SlideTogether_hh
16 
17 #include <protocols/moves/Mover.hh>
18 
19 //// Scripter Headers
20 #include <utility/tag/Tag.fwd.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 // Unit Headers
28 
29 //STL headers
30 #include <string>
31 
32 
33 ///////////////////////////////////////////////////////////////////////
34 
35 namespace protocols {
36 namespace ligand_docking {
37 
38 
39 ///@brief
41 {
42 public:
43  SlideTogether();
44  SlideTogether(std::string const & chain);
45 
46  virtual ~SlideTogether();
47  SlideTogether(SlideTogether const & that);
48 
49  virtual void apply( core::pose::Pose & pose );
50 
51  virtual protocols::moves::MoverOP clone() const;
53  virtual std::string get_name() const;
54 
55  void parse_my_tag(
56  utility::tag::TagPtr const tag,
60  core::pose::Pose const &
61  );
62 
63 private:
65  utility::vector1<core::Size> jumps_; // these guys tag along, such as waters and metals
66 };
67 
68 } //namespace ligand_docking
69 } //namespace protocols
70 
71 #endif