Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymAtomTreeMinimizer.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file core/optimization/AtomTreeMinimizer.hh
10 /// @brief High-level atom tree minimizer class for symmetrical minimization
11 /// @author Ingemar Andre
12 
13 #ifndef INCLUDED_core_optimization_symmetry_SymAtomTreeMinimizer_hh
14 #define INCLUDED_core_optimization_symmetry_SymAtomTreeMinimizer_hh
15 
16 
17 // Package headers
19 // AUTO-REMOVED #include <core/optimization/types.hh>
21 // Symmetry
24 
25 // Project headers
27 #include <core/pose/Pose.fwd.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 
34 namespace core {
35 namespace optimization {
36 namespace symmetry {
37 
38 /// @brief High-level atom tree minimizer class
40 {
41 
42 public:
43 
46 
47 public:
48 
49  // c-tor
51 
52  /// @brief Override the base class implementation. Non-const.
53  virtual
54  Real
55  run(
56  pose::Pose & pose,
57  kinematics::MoveMap const & move_map,
58  scoring::ScoreFunction const & scorefxn,
59  MinimizerOptions const & options
60  );
61 
62  static
63  void
65  pose::Pose & pose,
66  kinematics::MoveMap const & move_map_sym,
67  kinematics::MoveMap & move_map_asym
68  );
69 
70  static
71  void
73  pose::Pose & pose,
74  kinematics::MoveMap const & move_map_sym,
75  kinematics::MoveMap & move_map_semisym
76  );
77 
78 }; // SymAtomTreeMinimizer
79 
80 } // symmetry
81 } // namespace optimization
82 } // namespace core
83 
84 
85 #endif // INCLUDED_core_optimization_symmetry_AtomTreeMinimizer_HH