Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
WaterAdductHBondPotential.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/WaterAdductHBondPotential.hh
11 /// @brief
12 /// @author Jim Havranek
13 
14 
15 #ifndef INCLUDED_core_scoring_WaterAdductHBondPotential_hh
16 #define INCLUDED_core_scoring_WaterAdductHBondPotential_hh
17 
19 
20 // Package headers
21 #include <core/types.hh>
25 
26 // Project headers
28 #include <core/pose/Pose.fwd.hh>
29 
30 // Utility headers
31 #include <utility/pointer/owning_ptr.hh>
32 #include <utility/pointer/ReferenceCount.hh>
33 #include <utility/vector1.hh>
34 
35 
36 //////////////////////////////////////////////////////////////////////////////////
37 //////////////////////////////////////////////////////////////////////////////////
38 //////////////////////////////////////////////////////////////////////////////////
39 
40 namespace core {
41 namespace scoring {
42 
43 ////////////////////////////////////////////////////////////////////////////////////////////////////
44 ////////////////////////////////////////////////////////////////////////////////////////////////////
45 ////////////////////////////////////////////////////////////////////////////////////////////////////
46 
48 public:
50 
51 public:
52  /// ctor
55  ///
56  Real
58  Residue const & rsd1,
59  Residue const & rsd2
60  ) const;
61 
62  ///
63  Real
65  Residue const & h2o_rsd,
66  Residue const & other_rsd
67  ) const;
68 
69  /// @details Fills the hbond set with hydrogen bonds to water; clears the original hbonds in the set
70  /// and also resets the hbond_options in the input hbond set.
71  void
73  pose::Pose const & pose,
74  hbonds::HBondSet & hbond_set
75  ) const;
76 
77  void
79  // input
80  Residue const & don_rsd,
81  Residue const & acc_rsd,
82  int const & don_nb,
83  int const & acc_nb,
84  // output
85  hbonds::HBondSet & hbond_set
86  ) const;
87 
88 private:
91 };
92 
93 
94 
95 } // scoring
96 } // core
97 
98 #endif