Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FixbbSimAnnealer.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 core/pack/annealer/FixbbSimAnnealer.hh
11 /// @brief Packer's standard annealer class declaration, originally written by Brian Kuhlman
12 /// and factored into base and derived classes by Jenny Hu.
13 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
14 
15 #ifndef INCLUDED_core_pack_annealer_FixbbSimAnnealer_hh
16 #define INCLUDED_core_pack_annealer_FixbbSimAnnealer_hh
17 
18 // Unit Headers
20 
21 // Package Headers
23 
25 
27 
28 #include <utility/vector0.hh>
29 #include <utility/vector1.hh>
30 
31 
32 namespace core {
33 namespace pack {
34 namespace annealer {
35 
36 class FixbbSimAnnealer;
37 
39 {
40 public:
42 
43 public:
46  ObjexxFCL::FArray1D_int & bestrotamer_at_seqpos,
48  bool start_with_current, // start simulation with current rotamers
51  ObjexxFCL::FArray1_int & current_rot_index,
52  bool calc_rot_freq,
53  ObjexxFCL::FArray1D< core::PackerEnergy > & rot_freq
54  );
55 
57  ObjexxFCL::FArray1D_int & bestrotamer_at_seqpos,
59  bool start_with_current, // start simulation with current rotamers
62  ObjexxFCL::FArray1_int & current_rot_index,
63  bool calc_rot_freq,
64  ObjexxFCL::FArray1D< core::PackerEnergy > & rot_freq
65  );
66 
67  virtual ~FixbbSimAnnealer();
68  void run();
69 
70  private:
73 };
74 
75 }//end namespace annealer
76 }//end namespace pack
77 }//end namespace core
78 
79 #endif