Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StartFrom.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/StartFrom.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_StartFrom_hh
15 #define INCLUDED_protocols_ligand_docking_StartFrom_hh
16 
18 
19 #include <core/pose/Pose.fwd.hh>
20 
21 #include <protocols/moves/Mover.hh>
22 #include <core/types.hh>
23 // AUTO-REMOVED #include <numeric/xyzVector.hh>
24 #include <utility/vector1.hh>
25 
26 //// Scripter Headers
27 #include <utility/tag/Tag.fwd.hh>
30 
31 ///////////////////////////////////////////////////////////////////////
32 
33 namespace protocols {
34 namespace ligand_docking {
35 
37 {
38 public:
39  StartFrom();
40  virtual ~StartFrom();
41  StartFrom(StartFrom const & that);
42 
43  virtual protocols::moves::MoverOP clone() const;
45  virtual std::string get_name() const;
46 
47  void parse_my_tag(
48  utility::tag::TagPtr const tag,
52  core::pose::Pose const &
53  );
54 
55  void coords(core::Vector const & coords,std::string const & pdb_tag);
56 
57  void chain(std::string const & chain);
58 
59  void apply(core::pose::Pose & pose);
60 
61  // Undefined, commenting out to make PyRosetta compile
62  //StartFrom(core::pose::Pose & pose);
63 
65 
66 private:
68  std::map< std::string, utility::vector1<core::Vector> > starting_points_;
69  std::map<std::string,core::Vector > potential_starting_positions_;
70 };
71 
73  core::Size const jump_id,
74  core::Vector const desired_centroid,
75  core::pose::Pose & pose
76 );
77 
78 } //namespace ligand_docking
79 } //namespace protocols
80 
81 #endif