Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DockSetupMover.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
11 /// @brief allows low-resolution docking using simulated or parallel tempering
12 /// @author Oliver Lange (oliver.lange@tum.de)
13 
14 #ifndef INCLUDED_protocols_docking_DockSetupMover_hh
15 #define INCLUDED_protocols_docking_DockSetupMover_hh
16 
17 // Unit Headers
19 
20 // Package Headers
22 
23 // Project Headers
24 #include <core/types.hh>
25 #include <core/pose/Pose.fwd.hh>
28 
29 #include <protocols/moves/Mover.hh>
34 
35 #include <utility/tag/Tag.fwd.hh>
36 
37 
38 // Utility Headers
39 #include <utility/vector1.hh>
40 
41 // Numeric Headers
42 
43 // ObjexxFCL Headers
44 
45 // C++ headers
46 
47 namespace protocols {
48 namespace docking {
49 
50 /// @brief allows docking using simulated or parallel tempering
51 /// @detailed
53 {
54 public:
55  /// @brief default constructor fills values with the expected defaults
57 
58  /// @brief clone
59  virtual protocols::moves::MoverOP clone() const;
60 
61  ///@brief copy ctor
62  DockSetupMover( DockSetupMover const & rhs );
63 
64  ///@brief assignment operator
65  DockSetupMover & operator=( DockSetupMover const & rhs );
66 
67  /// @brief Assigns default values to primitive members
68  void set_defaults();
69 
70  virtual void apply( core::pose::Pose & pose );
71 
72  std::string const& partners() const { return partners_;} /// @brief returns the docking partners chain identifiers
73 
74  virtual std::string get_name() const { return "DockSetupMover"; }
75 
76  // DockJumps & movable_jumps(){ return movable_jumps_;} ///@brief returns ref to the jumps vector for docking
77  // DockJumps const & movable_jumps() const { return movable_jumps_; } ///@ return const ref to the jumps vector for docking
78 
79  void set_partners( std::string const& setting ){ partners_=setting; }
80  // void set_movable_jumps( DockJumps const& setting ){ movable_jumps_ = setting; }
81  // void add_jump( core::SSize const jump_number ){ movable_jumps_.push_back( int( jump_number ) ); }
82 
83  void show( std::ostream & out=std::cout ) const;
84  friend std::ostream & operator<<(std::ostream& out, const DockSetupMover & dp );
85 
86  // function for the parser with lots of accessors
87  void parse_my_tag(
88  utility::tag::TagPtr const tag,
92  core::pose::Pose const &
93  );
94 
95 protected:
96  void copy( DockSetupMover & lhs, DockSetupMover const & rhs);
97 
98 private:
99  /// --- configurables -----
102  DockJumps movable_jumps_; //vector1_int
104 
105  /// --- state ----
106  // core::kinematics::FoldTree fold_tree_;
107  // std::string previous_sequence_;
108 
109 };
110 
111 } // docking
112 } // protocols
113 
114 #endif
115