Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SecondaryMatchProtocol.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/enzdes/SecondaryMatchProtocol.hh
11 ///
12 /// @brief
13 /// @author Florian Richter
14 
15 
16 #ifndef INCLUDED_protocols_enzdes_SecondaryMatchProtocol_hh
17 #define INCLUDED_protocols_enzdes_SecondaryMatchProtocol_hh
18 
19 
21 // AUTO-REMOVED #include <protocols/toolbox/match_enzdes_util/EnzConstraintIO.hh>
22 
23 #include <core/pose/Pose.fwd.hh>
27 
29 #include <utility/vector1.hh>
30 
31 
32 
33 namespace protocols{
34 namespace enzdes{
35 
40 
42 
44 
45 
46 
48 {
49 
50 public:
51 
54 
55  void apply( core::pose::Pose & start_pose);
56 
57  virtual std::string get_name() const;
58 
63  ) const;
64 
65 
66  bool
68  core::pose::Pose & start_pose
69  );
70 
71  void
73  utility::vector1< core::Size > const & trial_pos ){
74  trial_positions_ = trial_pos; }
75 
76 
77 protected:
78 
79  void
81  core::pose::Pose & pose,
86  );
87 
88  void
90  core::pose::Pose const & pose
91  );
92 
93  bool
95 
96 
97  bool
99  core::pose::Pose const & pose,
101  core::conformation::ResidueCOP target_residue,
102  core::Size const trial_pos
103  );
104 
105  void
107 
108 
109 private:
111 
112  std::map< core::conformation::ResidueCOP, std::map< core::conformation::ResidueCOP, core::Size > > found_res_compatibility_;
114 
119 
120 }; //class SecondaryMatchProtocol
121 
122 
123 /// @brief helper class to process and output the different found poses
125 {
126 public:
129  core::pose::PoseCOP ref_pose_in,
130  SecondaryMatchProtocolCAP seqmatch_in
131  );
132 
133  void
135 
136  bool
138 
139 private:
140 
141  //the reference pose for this class
143 
144  //the residues that need to be put into the ref pose
146 
147  //the secondary match protocol that a particular instance comes from
149 
150 }; //PoseFoundResidueCombination
151 
152 
153 } //namespace enzdes
154 } //namespace protocols
155 
156 
157 #endif // INCLUDED_protocols_enzdes_EnzdesFixBBProtocol_HH