Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScoringSecMatchRPE.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 protocols/match/downstream/GeometrySecMatchRPE.hh
10 /// @brief
11 /// @author Kui K. Chan, kuichan@u.washington.edu, Oct 09
12 
13 #ifndef INCLUDED_protocols_match_downstream_ScoringSecMatchRPE_hh
14 #define INCLUDED_protocols_match_downstream_ScoringSecMatchRPE_hh
15 
16 
17 // Unit headers
20 // AUTO-REMOVED #include <protocols/toolbox/match_enzdes_util/MatchConstraintFileInfo.fwd.hh>
21 
22 // Project headers
23 #include <core/types.hh>
24 // AUTO-REMOVED #include <core/chemical/ResidueType.fwd.hh>
26 #include <core/pose/Pose.fwd.hh>
29 
30 // Utility headers
31 #include <utility/pointer/ReferenceCount.hh>
32 // AUTO-REMOVED #include <utility/string_util.hh>
33 
34 // C++ headers
35 // AUTO-REMOVED #include <list>
36 // AUTO-REMOVED #include <string>
37 
38 #include <utility/vector1.hh>
39 
40 
41 namespace protocols {
42 namespace match {
43 namespace downstream {
44 
45 
47 {
48 
49 public:
50 
52 
53  //ScoringSecMatchRPE( std::string const & s_in, std::string const & pdb_file);
54 
55  //ScoringSecMatchRPE( std::string const & s_in);
56  ScoringSecMatchRPE( std::string const & s_in, core::pose::Pose const & ref_pose);
57 
58  virtual ~ScoringSecMatchRPE();
59 
60  virtual
62  getCutoff() const;
63 
65  getScoreFunction() const;
66 
69 
70  virtual
71  void
72  setPose( core::pose::Pose const & ref_pose );
73 
74  virtual
75  bool
77  core::conformation::Residue const & match_res,
78  core::conformation::Residue const & target_res
79  ) const;
80 
81  virtual
82  bool
84  core::conformation::Residue const & match_res,
85  core::conformation::Residue const & target_res
86  ) const;
87 
88  virtual
89  bool
91  core::conformation::Residue const & match_res,
92  core::conformation::Residue const & target_res
93  ) const;
94 
95  virtual
96  bool
98 
99  virtual
100  bool
101  require_target_atom_coordinate( Size target_atom_id ) const;
102 
103  virtual
104  bool
105  check2bsc(
107  core::Real wts
108  );
109 
110 
111 private:
112 
115 
119 
122 
126 
127 
128 };
129 
130 
131 }
132 }
133 }
134 
135 #endif