Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DOFHistogramRecorder.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/simple_moves/DOFHistogramRecorder.hh
11 ///
12 /// @brief
13 /// @author
14 
15 
16 #ifndef INCLUDED_protocols_simple_moves_DOFHistogramRecorder_hh
17 #define INCLUDED_protocols_simple_moves_DOFHistogramRecorder_hh
18 
19 
20 // Project forward headers
22 
23 
24 // Project headers
25 // AUTO-REMOVED #include <numeric/MultiDimensionalHistogram.hh>
26 // AUTO-REMOVED #include <core/id/DOF_ID.hh>
28 #include <core/types.hh>
29 #include <core/pose/Pose.fwd.hh>
30 #include <utility/vector1.hh>
31 
32 
33 // External library headers
34 
35 
36 // C++ headers
37 // AUTO-REMOVED #include <string>
38 
39 #include <core/id/DOF_ID.fwd.hh>
40 #include <core/id/types.hh>
41 #include <utility/vector0.hh>
42 #include <numeric/MultiDimensionalHistogram.fwd.hh>
43 #include <numeric/types.hh>
44 
45 
46 
47 // Operating system headers
48 
49 
50 // Forward declarations
51 
52 
53 namespace protocols {
54 namespace simple_moves {
55 
56 
57  /// @brief
59 {
60  // Friends
61 
62 
63 public: // Types
64 
65 
66 private: // Types
67 
68 
69 
70 
71 public: // Constants
72 
73 
74 private: // Constants
75 
76 
77 
78 
79 public: // Creation
80 
81 
82  /// @brief Constructor
84 
85 
86  /// @brief Destructor
88 
89 
90  /// @brief Copy constructor
92 
93 
94 private: // Creation
95 
96 
97 
98 
99 public: // Methods: assignment
100 
101 
102  /// @brief operator=
104  operator=( DOFHistogramRecorder const & );
105 
106 
107 public: // Methods: comparison
108 
109 
110 
111 public: // Methods
112 
113  core::Size
114  num_bins() const
115  {
116  return num_bins_;
117  }
118 
119  void
122  )
123  {
125  }
126 
127  void
129  core::pose::Pose const & pose,
131  );
132 
134  dofs() const
135  {
136  return dofs_;
137  }
138 
140  histograms() const
141  {
142  return histograms_;
143  }
144 
145  void
147  core::pose::Pose const & pose
148  );
149 
150  void
152  std::ostream & os
153  ) const;
154 
155 
156 private:
157 
158 
159 
160 public: // Properties
161 
162 
163 
164 
165 private: // Fields
166 
171 
172 }; // DOFHistogramRecorder
173 
174 
175 std::ostream & operator << (
176  std::ostream & os,
177  DOFHistogramRecorder const & dof_recorder
178 );
179 
180 
184  core::Size num_bins,
185  core::Real min,
186  core::Real max
187 );
188 
189 
190 } // namespace moves
191 } // namespace protocols
192 
193 
194 #endif // INCLUDED_protocols_simple_moves_DOFHistogramRecorder_HH