Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
WaterAnchorInfo.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
11 /// @brief
12 /// @author
13 
14 
15 #ifndef INCLUDED_core_pack_rotamer_set_WaterAnchorInfo_hh
16 #define INCLUDED_core_pack_rotamer_set_WaterAnchorInfo_hh
17 
18 #include <core/types.hh>
19 #include <core/chemical/AA.hh>
22 
23 // utility headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 // C++
27 
28 namespace core {
29 namespace pack {
30 namespace rotamer_set {
31 
33 public:
34  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
35  virtual ~WaterAnchorInfo();
36  typedef chemical::AA AA;
38 
39 public:
40 
41  Size
42  anchor_residue() const;
43 
44  void
45  anchor_residue( Size const rsd );
46 
47  bool
48  attaches_to_residue_type( ResidueType const & type ) const;
49 
50  Size
51  anchor_atom( ResidueType const & type ) const;
52 
53  void
54  anchor_atom( std::string const & name );
55 
56  void
57  aa( AA const & aa_in );
58 
59  Size
60  nstep() const;
61 
62  void
63  nstep( Size const nstep_in );
64 
65 private:
70 };
71 
72 } // namespace rotamer_set
73 } // namespace pack
74 } // namespace core
75 
76 
77 #endif