Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterchainPairEnergy.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 core/scoring/methods/InterchainPairEnergy.hh
11 /// @brief Statistically derived rotamer pair potentials
12 /// @detailed For docking (or between chains) only those residues at the interface
13 /// and between the two interfaces need to be evaluated
14 /// @author Monica Berrondo
15 
16 
17 #ifndef INCLUDED_protocols_scoring_methods_InterchainPairEnergy_hh
18 #define INCLUDED_protocols_scoring_methods_InterchainPairEnergy_hh
19 
24 
25 // Project headers
26 #include <core/pose/Pose.fwd.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 // Utility headers
32 
33 
34 namespace protocols {
35 namespace scoring {
36 namespace methods {
37 
38 ///
40 public:
42 public:
43 
44  ///
46 
47 
48  /// clone
49  virtual
51  clone() const;
52 
53  virtual
54  void
56 
57  /////////////////////////////////////////////////////////////////////////////
58  // scoring
59  /////////////////////////////////////////////////////////////////////////////
60 
61  virtual
62  void
64  core::conformation::Residue const & rsd1,
65  core::conformation::Residue const & rsd2,
66  core::pose::Pose const &,// pose,
69  ) const;
70 
71  virtual
72  void
74  core::pose::Pose & pose,
77  ) const;
78 
79  /// This method *should* admit to defining intraresidue energies
80  virtual
81  bool
82  defines_intrares_energy( core::scoring::EnergyMap const & ) const { return false; }
83 
84  void
87  core::pose::Pose const &,
90  ) const {}
91 
92  virtual
95 
96  virtual
98 
99 
100  /////////////////////////////////////////////////////////////////////////////
101  // data
102  /////////////////////////////////////////////////////////////////////////////
103 
104 private:
105 
106  // const-ref to scoring database
108 virtual
109 core::Size version() const;
110 };
111 
112 
113 }
114 }
115 }
116 
117 #endif