Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymMinMover.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
10 /// @brief
11 /// @author Ingemar Andre
12 
13 
14 #ifndef INCLUDED_protocols_simple_moves_symmetry_SymMinMover_hh
15 #define INCLUDED_protocols_simple_moves_symmetry_SymMinMover_hh
16 
17 // Unit headers
20 
21 #include <utility/tag/Tag.fwd.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 // Package headers
28 //#include <protocols/moves/Mover.hh>
29 
30 //#include <core/kinematics/MoveMap.fwd.hh>
31 //#include <core/optimization/MinimizerOptions.fwd.hh>
32 //#include <core/pose/Pose.fwd.hh>
33 //#include <core/scoring/ScoreFunction.fwd.hh>
34 //#include <core/types.hh>
35 
36 // ObjexxFCL Headers
37 
38 // C++ Headers
39 
40 // Utility Headers
41 
42 namespace protocols {
43 namespace simple_moves {
44 namespace symmetry {
45 ///////////////////////////////////////////////////////////////////////////////
47 {
48 public:
49 
50  // default constructor
51  SymMinMover();
52 
53  SymMinMover( std::string const & );
54 
55  ~SymMinMover();
56 
57  // constructor with arguments
59  core::kinematics::MoveMapOP movemap_in,
60  ScoreFunctionCOP scorefxn_in,
61  std::string const & min_type_in,
62  Real tolerance_in,
63  bool use_nb_list_in,
64  bool deriv_check_in = false,
65  bool deriv_check_verbose_in = false
66  );
67 
68  virtual void apply( core::pose::Pose & pose_ );
69  virtual std::string get_name() const;
70 
71  virtual protocols::moves::MoverOP clone() const;
73 
74  virtual void parse_my_tag(
75  utility::tag::TagPtr const tag,
76  moves::DataMap &data,
77  filters::Filters_map const &filters,
78  moves::Movers_map const &movers,
79  core::pose::Pose const & pose );
80 
81 };
82 
83 } // symmetry
84 } // moves
85 } // rosetta
86 #endif