Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SurfaceEnergy.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/SurfaceEnergy.hh
11 /// @brief Header file for SurfaceEnergy; Not really a CD1B energy; this class is needed for optE
12 /// @author Ron Jacak
13 
14 
15 #ifndef INCLUDED_core_pack_interaction_graph_SurfaceEnergy_hh
16 #define INCLUDED_core_pack_interaction_graph_SurfaceEnergy_hh
17 
18 // Unit Headers
20 
21 // Package headers
24 //#include <core/scoring/InterchainPotential.fwd.hh>
26 
27 // Project headers
28 #include <core/pose/Pose.fwd.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 // Utility headers
34 
35 
36 namespace core {
37 namespace pack {
38 namespace interaction_graph {
39 
40 
41 //----------------------------------------------------------------------------//
42 //------------------------ SurfaceEnergy Class ----------------------------//
43 //----------------------------------------------------------------------------//
44 
45 ///
46 /// @begin SurfaceEnergy
47 ///
48 /// @brief
49 /// Defines a (pseudo) context-dependent one-body surface energy. Really, this class
50 /// is only being used as a hack for the optE protocol so that the non-PD surface
51 /// energy can be optimized together with the other PD-terms.
52 ///
54 public:
56 
57 public:
58 
59  SurfaceEnergy();
60 
61  virtual
63  clone() const;
64 
65  virtual
66  void
67  setup_for_scoring( pose::Pose & pose, scoring::ScoreFunction const & ) const;
68 
69  virtual
70  void
71  residue_energy( conformation::Residue const & rsd, pose::Pose const &, scoring::EnergyMap & ) const;
72 
73  virtual
74  void
76 
77  void indicate_required_context_graphs( utility::vector1< bool > & /*context_graphs_required*/ ) const {};
78 
79 
80 private:
81 
82  // const-ref to scoring database
83  //InterchainPotential const & potential_;
84 virtual
85 core::Size version() const;
86 
87 };
88 
89 
90 } // namespace interaction_graph
91 } // namespace pack
92 } // namespace core
93 
94 #endif // INCLUDED_core_scoring_ScoreFunction_HH