Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CountPairNone.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/etable/count_pair/CountPairNone.cc
11 /// @brief Count pair for residues where all atom pairs should be counted.
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 
16 
17 //Auto Headers
18 namespace core {
19 namespace scoring {
20 namespace etable {
21 namespace count_pair {
22 
24 
26 
27 bool
29  int const at1,
30  int const at2,
31  Real & w,
32  Size & path_dist
33 ) const
34 {
35  return operator() ( at1, at2, w, path_dist );
36 }
37 
38 void
40  conformation::Residue const &,// res1,
41  conformation::Residue const &,// res2,
42  etable::TableLookupEvaluator const &,// etable_energy,
43  EnergyMap &// emap
44 ) const
45 {
46  return;
47  //inline_residue_atom_pair_energy( res1, res2, etable_energy, *this, emap );
48 }
49 
50 
51 void
53  conformation::Residue const &,// res1,
54  conformation::Residue const &,// res2,
55  etable::TableLookupEvaluator const &,// etable_energy,
56  EnergyMap &// emap
57 ) const
58 {
59  return;
60  //inline_residue_atom_pair_energy_sidechain_backbone( res1, res2, etable_energy, *this, emap );
61 }
62 
63 
64 void
66  conformation::Residue const &,// res1,
67  conformation::Residue const &,// res2,
68  etable::TableLookupEvaluator const &,// etable_energy,
69  EnergyMap &// emap
70 ) const
71 {
72  return;
73  //inline_residue_atom_pair_energy_sidechain_whole( res1, res2, etable_energy, *this, emap );
74 }
75 
76 void
78  conformation::Residue const &,
79  conformation::Residue const &,
81  EnergyMap &
82 ) const
83 {}
84 
85 
86 void
88  conformation::Residue const &,
89  conformation::Residue const &,
91  EnergyMap &
92 ) const
93 {}
94 
95 void
97  conformation::Residue const &,// res1,
98  conformation::Residue const &,// res2,
99  etable::AnalyticEtableEvaluator const &,// etable_energy,
100  EnergyMap &// emap
101 ) const
102 {
103  return;
104  //inline_residue_atom_pair_energy( res1, res2, etable_energy, *this, emap );
105 }
106 
107 
108 void
110  conformation::Residue const &,// res1,
111  conformation::Residue const &,// res2,
112  etable::AnalyticEtableEvaluator const &,// etable_energy,
113  EnergyMap &// emap
114 ) const
115 {
116  return;
117  //inline_residue_atom_pair_energy_sidechain_backbone( res1, res2, etable_energy, *this, emap );
118 }
119 
120 
121 void
123  conformation::Residue const &,// res1,
124  conformation::Residue const &,// res2,
125  etable::AnalyticEtableEvaluator const &,// etable_energy,
126  EnergyMap &// emap
127 ) const
128 {
129  return;
130  //inline_residue_atom_pair_energy_sidechain_whole( res1, res2, etable_energy, *this, emap );
131 }
132 void
134  conformation::Residue const &,
135  conformation::Residue const &,
137  EnergyMap &
138 ) const
139 {}
140 
141 
142 void
144  conformation::Residue const &,
145  conformation::Residue const &,
147  EnergyMap &
148 ) const
149 {}
150 
151 
152 } // namespace count_pair
153 } // namespace etable
154 } // namespace scoring
155 } // namespace core