Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PackRotamersMoverPartGreedy.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
11 /// @brief
12 /// @author Sagar Khare (khares@uw.edu)
13 
14 #ifndef INCLUDED_protocols_enzdes_PackRotamersMoverPartGreedy_hh
15 #define INCLUDED_protocols_enzdes_PackRotamersMoverPartGreedy_hh
16 
17 // Unit headers
18 //#include <protocols/simple_moves/PackRotamersMoverPartGreedy.fwd.hh>
19 #include <protocols/moves/Mover.hh>
20 
21 // Project headers
22 #include <core/types.hh>
23 
26 #include <core/pose/Pose.fwd.hh>
29 #include <utility/tag/Tag.fwd.hh>
30 #include <utility/vector1.hh>
31 
32 
33 
34 namespace protocols {
35 namespace enzdes {
36 
37 /// @brief a mover that packs the side-chains around a given set of target residues in a greedy fashion, and then packs the rest using the sim annealer.
38 
40 
44 
45 public:
46  ///@brief default constructors
48  ScoreFunctionOP scorefxn,
51  );
52 
54 
55  //std::string PackRotamersMoverPartGreedyCreator::mover_name();
56 
57  // destructor
59 
60  //parser stuff
62  void apply( core::pose::Pose &pose );
63  virtual std::string get_name() const;
66 
67  // methods
68  void greedy_around(
69  core::pose::Pose & pose,
70  utility::vector1<core::Size > const & target_res,
73  );
74 
76  core::Size const & position,
78  core::pose::Pose const & pose
79  );
80 
82  core::Size const & best_neigh,
84  utility::vector1< core::Size > & current_neighbors
85  );
86 
87  // getters and setters
88 
92 
93  //choose n best residues interacting with ligand
95  core::pose::Pose const & pose,
96  core::Size const & n_best
97  );
98 
99 private:
111 };
112 
113 
114 } // moves
115 } // protocols
116 
117 #endif