Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FinalMinimizer.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 core/pack/task/ResfileReader.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_FinalMinimizer_hh
15 #define INCLUDED_protocols_ligand_docking_FinalMinimizer_hh
16 
17 // Unit Headers
19 // AUTO-REMOVED #include <protocols/ligand_docking/MinimizeBackbone.fwd.hh>
21 // AUTO-REMOVED #include <protocols/ligand_docking/InterfaceBuilder.fwd.hh>
22 
23 // Package Headers
24 //// Project Headers
25 #include <protocols/moves/Mover.hh>
28 
29 //// Scripter Headers
30 #include <utility/tag/Tag.fwd.hh>
33 
34 // Utility Headers
35 
36 #include <utility/vector1.hh>
37 
38 ///////////////////////////////////////////////////////////////////////
39 
40 namespace protocols {
41 namespace ligand_docking {
42 
43 ///@brief
45 {
46 public:
48  virtual ~FinalMinimizer();
49  FinalMinimizer(FinalMinimizer const & that);
50 
51  virtual void apply( core::pose::Pose & pose );
52 
53  virtual protocols::moves::MoverOP clone() const;
55  virtual std::string get_name() const;
56 
57  void parse_my_tag(
58  utility::tag::TagPtr const tag,
62  core::pose::Pose const &
63  );
64 
65 private:
68 
70  get_final_min_mover(core::pose::Pose const & pose) const;
71 };
72 
73 } //namespace ligand_docking
74 } //namespace protocols
75 
76 #endif