Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MultiTemperatureTrialCounter.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/MultiTemperatureTrialCounter.hh
11 /// @brief
12 /// @author Oliver Lange
13 
14 #ifndef INCLUDED_protocols_canonical_sampling_MultiTemperatureTrialCounter_hh
15 #define INCLUDED_protocols_canonical_sampling_MultiTemperatureTrialCounter_hh
16 
17 // Unit Headers
20 
21 // Project Headers
22 // Utility Headers
23 #include <core/types.hh>
24 #include <utility/vector1.hh>
25 
26 namespace protocols {
27 namespace canonical_sampling {
28 
30 public:
33 
34  void reset();
35 
36  void count_trial( std::string const& );
37  void count_accepted( std::string const& );
39 
40  // Undefined, commenting out to fix PyRosetta build core::Size trial( std::string const& );
41  // Undefined, commenting out to fix PyRosetta build core::Size accepted( std::string const& );
42  // Undefined, commenting out to fix PyRosetta build core::Real energy_drop( std::string const& );
43 
46 
47  void show( std::ostream& ) const;
48  void show() const;
49  void write_to_file( std::string const& file, std::string const& tag ) const;
50 
52 
53 private:
54  void _write_to_stream( std::ostream&, std::string const& tag ) const;
57 };
58 
59 
60 }
61 }
62 
63 #endif