Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SearchPatternRotSetOp.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 protocols/hotspot_hashing/SearchPatternRotSetOp.hh
11 /// @brief Creates rigid body variants from search pattern during repacking.
12 /// @author Alex Ford (fordas@uw.edu)
13 
14 #ifndef INCLUDED_protocols_hotspot_hashing_SearchPatternRotSetOp_hh
15 #define INCLUDED_protocols_hotspot_hashing_SearchPatternRotSetOp_hh
16 
17 // Unit Headers
20 
21 //Project headers
24 #include <core/graph/Graph.fwd.hh>
28 #include <core/pose/Pose.fwd.hh>
32 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace hotspot_hashing {
38 
40 {
41 public:
43 
46 
47  virtual
49  clone() const;
50 
51  virtual
53  core::pose::Pose const & pose,
54  core::pack::task::PackerTask const & ptask,
55  core::Size residue_index);
56 
57  virtual
59  core::pose::Pose const & pose,
61  core::Size residue_index
62  );
63 
64 private:
66 
67 };
68 
70 {
71  public:
72  AddSearchPatternRotSetOp(core::Size target_residue, SearchPatternOP pattern);
74 
76 
77  void parse_tag( TagPtr tag );
78 
79  virtual void apply( core::pose::Pose const &, core::pack::task::PackerTask & ) const;
80 
81  private:
84 };
85 
86 }
87 }
88 
89 #endif
90