Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MonteCarloTest.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/MonteCarloTest.hh
11 /// @brief perform a given mover and sample structures by MonteCarlo
12 /// @detailed The "score" evaluation of pose during MC after applying mover is done by
13 /// ither FilterOP that can do report_sm() or ScoreFunctionOP you gave.
14 /// By setting sample_type_ to high, you can also sample the pose that have higher score.
15 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
16 
17 #ifndef INCLUDED_protocols_simple_moves_MonteCarloTest_hh
18 #define INCLUDED_protocols_simple_moves_MonteCarloTest_hh
19 
20 // Unit Headers
23 
24 // Project Headers
25 #include <core/types.hh>
26 #include <core/pose/Pose.fwd.hh>
28 #include <protocols/moves/Mover.hh>
29 
30 // Utility headers
31 // AUTO-REMOVED #include <utility/vector1.hh>
32 
33 // Parser headers
35 #include <utility/tag/Tag.fwd.hh>
36 
37 #include <utility/vector1.hh>
38 
39 
40 namespace protocols {
41 namespace simple_moves {
42 
44 public:
45 
46  typedef core::Size Size;
47  typedef core::Real Real;
50 
56 
57 
58 public: // constructor/destructor
59 
60  /// @brief default constructor
62 
63  /// @brief destructor
65 
66  /// @brief create copy constructor
67  virtual MoverOP clone() const;
68 
69  /// @brief create this type of objectt
70  virtual MoverOP fresh_instance() const;
71  std::string get_name() const;
72 
73 
74  /// @brief apply MonteCarloTest (Mover)
75  virtual void apply( Pose & pose );
76  /// @brief set mover
77  void set_MC( GenericMonteCarloMoverOP mover );
79  // Undefinede, commenting out to fix PyRosetta build void recover( Pose & pose );
80 
81 
82  virtual void parse_my_tag(
83  TagPtr const tag,
84  DataMap & data,
85  Filters_map const & filters,
86  Movers_map const & movers,
87  Pose const &
88  );
89 
90 // bool recover_low() const;
91 // void recover_low( bool const recover );
92 
93 private: // data
94 // bool recover_low_; //dflt true; if false, recovers last
95 
96  /// @brief mover
98 };
99 
100 } // namespace simple_moves
101 } // namespace protocols
102 
103 #endif
104