Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
designability_score.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 #ifndef INCLUDED_protocols_sic_dock_designability_score_hh
11 #define INCLUDED_protocols_sic_dock_designability_score_hh
12 
14 #include <core/pose/Pose.fwd.hh>
15 #include <core/types.hh>
16 
17 namespace protocols{
18 namespace sic_dock{
19 
20 void
22  core::kinematics::Stub const & sir,
23  core::kinematics::Stub const & sjr,
26 );
27 
28 struct
30 {
31  char *hh,*he,*hl,*ee,*el,*ll;
32 
33  XfoxmScore(
34  std::string datadir
35  );
36 
37  void
38  fillarray(
39  char *a, std::string fname
40  );
41 
42  void
43  makebinary(
44  char *a, std::string fname
45  );
46 
47  float
48  score(
49  core::kinematics::Stub const & s1,
50  core::kinematics::Stub const & s2,
51  char ss1, char ss2
52  ) const;
53 
54  float
55  score(
56  core::pose::Pose const & pose,
57  platform::Size rsd1,
58  platform::Size rsd2
59  ) const;
60 
61  float
62  score(
63  core::pose::Pose & pose,
64  bool compute_ss = true
65  ) const;
66 
67  float
68  score(
69  core::pose::Pose const & pose
70  ) const;
71 };
72 
73 } // end namespace sic_dock
74 } // end namespace protocols
75 
76 #endif // INCLUDED_protocols_sic_dock_designability_score_hh