Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AnnealerFactory.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/AnnealerFactory.fwd.hh
11 /// @brief Annealer Factory class forward declaration
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_core_pack_annealer_AnnealerFactory_hh
15 #define INCLUDED_core_pack_annealer_AnnealerFactory_hh
16 
17 /// Unit headers
19 
20 /// Package headers
25 
26 
27 /// ObjexxFCL headers
28 #include <ObjexxFCL/FArray1D.fwd.hh>
29 #include <ObjexxFCL/FArray1.fwd.hh>
30 
31 /// C++ headers
32 #include <utility/vector0.hh> // damn shame
33 #include <core/types.hh>
34 
35 namespace core {
36 namespace pack {
37 namespace annealer {
38 
40 {
41 public:
42 
43  static
47  utility::vector0<int> & rot_to_pack,
48  ObjexxFCL::FArray1D_int & bestrotamer_at_seqpos,
49  core::PackerEnergy & bestenergy,
50  bool start_with_current, // start simulation with current rotamers
53  ObjexxFCL::FArray1_int & current_rot_index,
54  bool calc_rot_freq,
55  ObjexxFCL::FArray1D< core::PackerEnergy > & rot_freq
56  );
57 
58 };
59 
60 }// namespace annealer
61 }// namespace pack
62 }// namespace core
63 
64 #endif