Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CompoundTranslate.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 protocols/ligand_docking/CompoundTranslate.hh
11 /// @author Gordon Lemmon
12 
13 #ifndef INCLUDED_protocols_ligand_docking_CompoundTranslate_hh
14 #define INCLUDED_protocols_ligand_docking_CompoundTranslate_hh
15 
16 // Unit Headers
18 #include <protocols/moves/Mover.hh>
19 
20 #include <utility/vector1.hh>
21 
22 
23 ///////////////////////////////////////////////////////////////////////
24 
25 namespace protocols {
26 namespace ligand_docking {
27 
29 {
30 public:
32  virtual ~CompoundTranslate();
34 
35  virtual protocols::moves::MoverOP clone() const;
37  virtual std::string get_name() const;
38 
39  void parse_my_tag(
40  utility::tag::TagPtr const tag,
41  protocols::moves::DataMap & datamap,
42  protocols::filters::Filters_map const & filters,
43  protocols::moves::Movers_map const & movers,
44  core::pose::Pose const & pose
45  );
46 
47  void apply(core::pose::Pose & pose);
48 
49 private:
53 };
54 
55 } //namespace ligand_docking
56 } //namespace protocols
57 
58 #endif