Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VDW_Energy.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/VDW_Energy.hh
11 /// @brief Statistically derived rotamer pair potential class declaration
12 /// @author Phil Bradley
13 
14 
15 #ifndef INCLUDED_core_scoring_methods_VDW_Energy_hh
16 #define INCLUDED_core_scoring_methods_VDW_Energy_hh
17 
18 // Unit Headers
20 
21 // Package headers
26 
27 
28 // Project headers
29 #include <core/pose/Pose.fwd.hh>
30 
31 #include <utility/vector1.hh>
32 
33 
34 // Utility headers
35 
36 
37 namespace core {
38 namespace scoring {
39 namespace methods {
40 
41 ///
43 public:
45 public:
46 
47  /// @brief C-tor, requires options to tell us the atom_type_set_name for the AtomVDW data
48  VDW_Energy( EnergyMethodOptions const & options );
49 
50 
51  /// clone
52  virtual
54  clone() const;
55 
56  /// @brief COPY C-TOR
57  VDW_Energy( VDW_Energy const & src );
58 
59 
60  /////////////////////////////////////////////////////////////////////////////
61  // scoring
62  /////////////////////////////////////////////////////////////////////////////
63 
64  virtual
65  void
66  setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const;
67 
68  virtual
69  void
70  setup_for_derivatives( pose::Pose & pose, ScoreFunction const & ) const;
71 
72  virtual
73  void
75  conformation::Residue const & rsd1,
76  conformation::Residue const & rsd2,
77  pose::Pose const & pose,
78  ScoreFunction const &,
79  EnergyMap & emap
80  ) const;
81 
82 
83  virtual
84  void
86  conformation::Residue const &,
87  pose::Pose const &,
88  ScoreFunction const &,
89  EnergyMap &
90  ) const {}
91 
92 
93  virtual
94  void
96  id::AtomID const & atom_id,
97  pose::Pose const & pose,
98  kinematics::DomainMap const & domain_map,
99  ScoreFunction const & scorefxn,
100  EnergyMap const & weights,
101  Vector & F1,
102  Vector & F2
103  ) const;
104 
105 // virtual
106 // void
107 // eval_atom_derivative(
108 // id::AtomID const & atom_id,
109 // pose::Pose const & pose,
110 // ScoreFunction const &,
111 // EnergyMap const & weights,
112 // Vector & F1,
113 // Vector & F2
114 // ) const;
115 
116  virtual
117  bool
118  defines_intrares_energy( EnergyMap const & /*weights*/ ) const { return false; }
119 
120  virtual
121  Distance
123 
124  virtual
125  void indicate_required_context_graphs( utility::vector1< bool > & context_graphs_required ) const;
126 
127  /////////////////////////////////////////////////////////////////////////////
128  // data
129  /////////////////////////////////////////////////////////////////////////////
130 
131 private:
132 
133  // const-ref to scoring database
135 
137 
139 virtual
140 core::Size version() const;
141 };
142 
143 
144 }
145 }
146 }
147 
148 #endif // INCLUDED_core_scoring_ScoreFunction_HH