Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SilentTrajectoryRecorder.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 protocols/canonical_sampling/SilentTrajectoryRecorder.hh
11 ///
12 /// @brief
13 /// @author
14 
15 
16 #ifndef INCLUDED_protocols_canonical_sampling_SilentTrajectoryRecorder_hh
17 #define INCLUDED_protocols_canonical_sampling_SilentTrajectoryRecorder_hh
18 
19 
20 // Project forward headers
23 
24 
25 // Project headers
27 #include <core/types.hh>
28 #include <core/pose/Pose.fwd.hh>
30 #include <utility/io/ozstream.hh>
31 
32 
33 // External library headers
34 
35 
36 // C++ headers
37 #include <string>
38 
39 
40 // Operating system headers
41 
42 
43 // Forward declarations
44 
45 
46 namespace protocols {
47 namespace canonical_sampling {
48 
49 
50  /// @brief
52 public:
54  /// @brief Constructor
56 
57  /// @brief Copy constructor
59 
60 public:
61  /// @brief Associates relevant options with the TemperedDocking class
62  static void register_options();
63 
64  virtual protocols::moves::MoverOP clone() const;
65 
67 
68  virtual std::string get_name() const;
69 
70  virtual void parse_my_tag(
71  utility::tag::TagPtr const tag,
73  protocols::filters::Filters_map const & filters,
74  protocols::moves::Movers_map const & movers,
75  core::pose::Pose const & pose
76  );
77 
78  virtual void initialize_simulation(
79  core::pose::Pose & pose,
80  protocols::canonical_sampling::MetropolisHastingsMover const & metropolis_hastings_mover,
81  core::Size cycle //non-zero if trajectory is restarted
82  );
83 
84  virtual void observe_after_metropolis(
85  protocols::canonical_sampling::MetropolisHastingsMover const & metropolis_hastings_mover
86  );
87 
88  virtual
89  bool
91  core::pose::Pose & pose,
93  core::Size& cycle,
94  core::Size& temp_level,
95  core::Real& temperature
96  );
97 
98 protected:
99 
100  virtual void write_model(
101  core::pose::Pose const & pose,
103  );
104 
106 
107  static bool options_registered_;
108 }; // SilentTrajectoryRecorder
109 
110 
111 } // namespace canonical_sampling
112 } // namespace protocols
113 
114 
115 #endif // INCLUDED_protocols_canonical_sampling_SilentTrajectoryRecorder_HH