Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DockingPrepackProtocol.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;
2 // rm-trailing-spaces:t -*-
3 // vi: set ts=2 noet:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available
7 // under license.
8 // (c) The Rosetta software is developed by the contributing members of the
9 // Rosetta Commons.
10 // (c) For more information, see http://www.rosettacommons.org.
11 // Questions about this can be
12 // (c) addressed to University of Washington UW TechTransfer,
13 // email: license@u.washington.edu.
14 
15 /// @file DockingPrepackProtocol
16 /// @brief Prepacking of the bound structure before
17 /// docking
18 /// @author Robin A Thottungal (raugust1@jhu.edu)
19 #ifndef INCLUDED_protocols_docking_DockingPrepackProtocol_hh
20 #define INCLUDED_protocols_docking_DockingPrepackProtocol_hh
21 
22 // Unit Headers
26 
27 // Package headers
29 
30 // Project headers
31 #include <core/pose/Pose.fwd.hh>
32 
37 
38 #include <utility/vector1.hh>
39 
40 
41 namespace protocols {
42 namespace docking{
43 
44 using namespace protocols::moves;
45 
47 public:
48  /// @brief Default constructor
50 
52 
53  /// @brief Assigns default values to members
54  void setup_defaults();
55 
56  /// @biref Instantiates and configures movers used by DockingPrepackProtocol
57  void setup_pack_operation_movers();
58 
59 
60  void apply( core::pose::Pose & );
61 
62  virtual std::string get_name() const;
63 
64  /// @biref Scores and outputs the pose - jd2 compatible.
65  void score_and_output(std::string filename,core::pose::Pose &);
66  void set_dock_ppk(bool dock_ppk);
67 
68 private:
69  // add @brief for members
72 
74 
79  bool dock_ppk_;
81 
82  /// @brief Performs setup that requires a pose
83  void finalize_setup( core::pose::Pose & );
84  void register_options();
85  void init_from_options();
86 };
87 
88 }
89 }
90 #endif