Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PDBTrajectoryRecorder.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/PDBTrajectoryRecorder.hh
11 ///
12 /// @brief
13 /// @author
14 
15 
16 #ifndef INCLUDED_protocols_canonical_sampling_PDBTrajectoryRecorder_hh
17 #define INCLUDED_protocols_canonical_sampling_PDBTrajectoryRecorder_hh
18 
19 
20 // Project forward headers
22 
23 
24 // Project headers
26 #include <core/types.hh>
27 #include <core/pose/Pose.fwd.hh>
29 #include <utility/io/ozstream.hh>
30 
31 
32 // External library headers
33 
34 
35 // C++ headers
36 #include <string>
37 
38 
39 // Operating system headers
40 
41 
42 // Forward declarations
43 
44 
45 namespace protocols {
46 namespace canonical_sampling {
47 
48 
49  /// @brief
52 public:
53  /// @brief Constructor
55 
56  /// @brief Destructor
58 
59  /// @brief Copy constructor
61 
62 private:
63  //assignment not allowed
64  /// @brief operator=
67 
68 public:
69  virtual
71  clone() const;
72 
73  virtual
75  fresh_instance() const;
76 
77  virtual
79  get_name() const;
80 
81  virtual
82  void
84  utility::tag::TagPtr const tag,
86  protocols::filters::Filters_map const & filters,
87  protocols::moves::Movers_map const & movers,
88  core::pose::Pose const & pose
89  );
90 
91  virtual void reset(
94  );
95 
96  virtual
97  void
99  core::pose::Pose & pose,
100  protocols::canonical_sampling::MetropolisHastingsMover const & metropolis_hastings_mover
101  );
102 
103 private:
104 
105  void
106  write_model(
107  core::pose::Pose const & pose,
109  );
110 
111  utility::io::ozstream trajectory_stream_;
112 
113 }; // PDBTrajectoryRecorder
114 
115 
116 } // namespace canonical_sampling
117 } // namespace protocols
118 
119 
120 #endif // INCLUDED_protocols_canonical_sampling_PDBTrajectoryRecorder_HH