Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PlaceProbeMover.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 sw=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 protocols/hotspot_hashing/movers/PlaceProbeMover.hh
11 /// @brief
12 /// @author Alex Ford fordas@uw.edu
13 
14 #ifndef INCLUDED_protocols_hotspot_hashing_movers_PlaceProbeMover_hh
15 #define INCLUDED_protocols_hotspot_hashing_movers_PlaceProbeMover_hh
16 
17 
18 // Project Headers
19 #include <string>
20 
21 #include <utility/tag/Tag.fwd.hh>
22 
26 #include <core/pose/Pose.fwd.hh>
28 
31 #include <protocols/moves/Mover.hh>
32 
33 // Unit headers
34 
35 namespace protocols
36 {
37 namespace hotspot_hashing
38 {
39 namespace movers
40 {
41 
43 {
44  public:
46  {
48  };
49 
51  {
53  };
54 
56 
58  std::string residue_name,
59  core::conformation::ResidueCOP target_residue,
60  core::Size search_partition = 1,
61  core::Size total_search_partition = 1);
62 
63  virtual void apply( Pose & );
64 
65  virtual bool reinitialize_for_new_input() const { return false; }
66 
67  protected:
68  ///@brief Parses tag compoments for PlaceProbeMover
70  utility::tag::TagPtr const tag,
74  core::pose::Pose const &);
75 
77 
78  void check_and_initialize(core::pose::Pose const & target_pose);
79 
80  void execute_one_search(core::pose::Pose & target_pose, core::Size search_index);
81 
82  void perform_local_refinement(core::pose::Pose & target_pose, core::Size target_residue);
83 
84  virtual SearchPatternOP create_search_pattern(core::pose::Pose const & target_pose) = 0;
86 
87  virtual SearchPatternOP create_refinement_pattern(core::pose::Pose const & target_pose, core::Size target_residue);
89 
91  std::vector<std::string> residue_variants_;
92 
95 
97 
100 
103 };
104 
105 }
106 }
107 }
108 
109 #endif