Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DockMCMProtocol.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 docking_initialization_protocols
11 /// @brief initialization protocols for docking
12 /// @detailed
13 /// This contains the functions that create initial positions for docking
14 /// You can either randomize partner 1 or partner 2, spin partner 2, or
15 /// perform a simple perturbation.
16 /// @author Monica Berrondo
17 /// @author Modified by Sergey Lyskov
18 
19 
20 #ifndef INCLUDED_protocols_docking_DockMCMProtocol_hh
21 #define INCLUDED_protocols_docking_DockMCMProtocol_hh
22 
23 // Unit Headers
26 // AUTO-REMOVED #include <protocols/docking/DockMCMCycle.hh>
27 
28 // Package headers
29 #include <core/pose/Pose.fwd.hh>
30 
32 
34 #include <utility/vector1.hh>
36 
37 namespace protocols {
38 namespace docking {
39 
41 {
42  typedef core::Real Real;
43 public:
44 
45  /// @brief Default constructor
47 
48  /// @brief Constructor with one argument - the jump number.
50  core::Size const rb_jump
51  );
52 
53  /// @brief Constructor with three arguments. The first is the jump number, the second is the docking scorefunction
54  /// and the third is the packing scorefxn.
56  core::Size const rb_jump,
59  );
60 
61  /// @brief Constructor with two arguments. The first is the DockJumps, the second is a scorefunction that will be
62  /// used for docking and packing.
66  );
67 
68  /// @brief Constructor with three arguments. The first is the DockJumps, the second is the docking scorefunction
69  /// and the third is the packing scorefunction.
74  );
75 
76  // destructor
78 
79  //clone
81 
82  /// @brief Performs the setup specific to this subclass of DockingHighRes (sets up filters).
83  void init();
84 
85  void set_filter( DockingHighResFilterOP filter );
86 
87  // protocol functions
88  virtual void apply( core::pose::Pose & pose );
89  virtual std::string get_name() const;
90 
92  void set_second_cycle(Size const & num);
93  void set_first_cycle(Size const & num);
94 
97  friend std::ostream & operator<<(std::ostream& out, const DockMCMProtocol & dmp );
98 
99 private:
101  DockMCMCycleOP dock_mcm_; //JQX: make it as a memmber
106 };
107 
108 } // docking
109 } // protocols
110 
111 #endif