Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymPackRotamersMover.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 #ifndef INCLUDED_protocols_simple_moves_symmetry_SymPackRotamersMover_hh
14 #define INCLUDED_protocols_simple_moves_symmetry_SymPackRotamersMover_hh
15 
16 // Unit headers
19 
20 // Project headers
23 
24 #include <utility/tag/Tag.fwd.hh>
26 
27 #include <utility/vector0.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 namespace protocols {
33 namespace simple_moves {
34 namespace symmetry {
35 
37 
38 public:
39  // default constructor
41 
45  core::Size nloop = 1
46  );
47 
48  // destructor (important for properly forward-declaring smart-pointer members)
50 
51  // copy constructor
52  SymPackRotamersMover( PackRotamersMover const & other );
53 
54 // virtual void apply( core::pose::Pose & pose );
55 
56  void
58  core::pose::Pose & pose,
60  );
61  virtual std::string get_name() const;
62 
63  virtual protocols::moves::MoverOP clone() const;
65 
66  virtual void parse_my_tag(
67  utility::tag::TagPtr const tag,
68  moves::DataMap &data,
69  filters::Filters_map const &filters,
70  moves::Movers_map const &movers,
71  core::pose::Pose const & pose );
72  virtual void parse_def( utility::lua::LuaObject const & def,
73  utility::lua::LuaObject const & score_fxns,
74  utility::lua::LuaObject const & tasks,
76 
77 private:
78 
79  // to be used/redefined by derived classes
80  virtual void setup( core::pose::Pose & pose );
81  // need a more elegant rot_to_pack implementation than this
82  virtual core::PackerEnergy run(
83  core::pose::Pose & pose,
85  ) const;
86 
87 private:
88 
89  // pointers to data that are passed in
93 };
94 
95 } // symmetry
96 } // moves
97 } // protocols
98 
99 #endif