Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RotamerRecovery.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 src/protocols/rotamer_recovery/RotamerRecovery.hh
11 /// @author Matthew O'Meara (mattjomeara@gmail.com)
12 
13 #ifndef INCLUDED_protocols_rotamer_recovery_RotamerRecovery_hh
14 #define INCLUDED_protocols_rotamer_recovery_RotamerRecovery_hh
15 
16 // Unit Headers
17 // AUTO-REMOVED #include <protocols/moves/Mover.fwd.hh>
22 
23 // Project Headers
24 #include <core/types.hh>
25 // AUTO-REMOVED #include <core/conformation/Residue.fwd.hh>
26 #include <core/pose/Pose.fwd.hh>
29 
30 // Utility headers
31 #include <utility/pointer/ReferenceCount.hh>
32 #include <utility/vector1.hh>
33 
34 
35 
36 
37 namespace protocols {
38 namespace rotamer_recovery {
39 
41 
42 public: // constructors destructors
43 
44  ///@brief default constructor
46 
47  ///@brief specify comparer and reporter
49  RRProtocolOP protocol,
50  RRComparerOP comparer,
51  RRReporterOP reporter);
52 
53  ///@brief destructor
54  virtual ~RotamerRecovery();
55 
56  ///@brief copy constructor
57  RotamerRecovery( RotamerRecovery const & src);
58 
59 public: // public interface
60 
61  virtual
62  void
64 
65  virtual
66  void
67  register_options() const;
68 
70  run(
71  core::pose::Pose const & pose,
72  core::scoring::ScoreFunction const & score_function,
73  core::pack::task::PackerTask const & packer_task
74  );
75 
76  void
78  RotamerRecovery & rotamer_recovery
79  );
80 
81  void
83 
84  void
86  bool const ignore_unrecognized_res
87  );
88 
89  bool
91 
92  virtual
93  void
94  show(std::ostream & out ) const;
95 
96  virtual
97  void
98  show();
99 
100  virtual
101  core::Real
102  recovery_rate() const;
103 
104 private: // data
105 
109 
111 };
112 
113 } // namespace rotamer_recovery
114 } // namespace protocols
115 
116 #endif