Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CoarseSingleResidueLibrary.cc
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/dunbrack/CoarseSingleResidueLibrary.cc
11 /// @brief
12 /// @author Andrew Leaver-Fay
13 
14 // Unit headers
16 
17 // Package headers
19 
20 
21 namespace core {
22 namespace pack {
23 namespace dunbrack {
24 
26 
28 
29 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
30 Real
32  conformation::Residue const & ,//rsd,
33  RotamerLibraryScratchSpace & //scratch
34 ) const
35 {
36  return 0.0;
37 }
38 
39 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
40 Real
42  conformation::Residue const & ,//rsd,
43  RotamerLibraryScratchSpace & // scratch
44 ) const
45 {
46  return 0.0;
47 }
48 
49 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
50 Real
52  conformation::Residue const & ,//rsd,
53  bool ,//curr_rotamer_only,
54  RotamerLibraryScratchSpace & // scratch
55 ) const
56 {
57  return 0.0;
58 }
59 
60 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
61 void
63  pose::Pose const &,// pose,
64  scoring::ScoreFunction const &,// scorefxn,
65  pack::task::PackerTask const &,// task,
67  chemical::ResidueTypeCOP,// concrete_residue,
68  conformation::Residue const&,// existing_residue,
69  utility::vector1< utility::vector1< Real > > const &,// extra_chi_steps,
70  bool,// buried,
71  RotamerVector &// rotamers
72 ) const
73 {}
74 
75 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
78  coarse::Translator const & //map
79 ) const
80 {
81  return 0;
82 }
83 
84 /// @brief Adheres to the contract from SingleLigandRotamerLibrary
85 void
87  utility::io::ozstream & //out
88 ) const
89 {}
90 
91 
92 void
94  Size const,// phi_bin,
95  Size const,// psi_bin,
96  CoarseRotamerSetOP )//rotamers )
97 {}
98 
99 
100 
101 } // namespace dunbrack
102 } // namespace scoring
103 } // namespace core
104