Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MonteCarloRecover.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/simple_moves/MonteCarloRecover.hh
11 /// @author Sarel Fleishman (sarelf@uw.edu)
12 
13 #ifndef INCLUDED_protocols_moves_MonteCarloRecover_hh
14 #define INCLUDED_protocols_moves_MonteCarloRecover_hh
15 
16 // Unit Headers
19 
20 // Project Headers
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
24 #include <protocols/moves/Mover.hh>
25 
26 // Utility headers
27 // AUTO-REMOVED #include <utility/vector1.hh>
28 
29 // Parser headers
31 #include <utility/tag/Tag.fwd.hh>
32 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace simple_moves {
38 
40 public:
41 
42  typedef core::Size Size;
43  typedef core::Real Real;
46 
52 
53 
54 public: // constructor/destructor
55 
56  /// @brief default constructor
58 
59  /// @brief destructor
61 
62  /// @brief create copy constructor
63  virtual MoverOP clone() const;
64 
65  /// @brief create this type of objectt
66  virtual MoverOP fresh_instance() const;
67  std::string get_name() const;
68 
69 
70  /// @brief apply MonteCarloRecover (Mover)
71  virtual void apply( Pose & pose );
72  /// @brief set mover
73  void set_MC( GenericMonteCarloMoverOP mover );
75  // Undefinede, commenting out to fix PyRosetta build void recover( Pose & pose );
76 
77 
78  virtual void parse_my_tag(
79  TagPtr const tag,
80  DataMap & data,
81  Filters_map const & filters,
82  Movers_map const & movers,
83  Pose const &
84  );
85 
86  bool recover_low() const;
87  void recover_low( bool const recover );
88 
89 private: // data
90  bool recover_low_; //dflt true; if false, recovers last
91 
92  /// @brief mover
94 };
95 
96 } // namespace simple_moves
97 } // namespace protocols
98 
99 #endif
100