Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SequenceDependentRefEnergy.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/SequenceDependentRefEnergy.hh
11 /// @brief Reference energy method declaration
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 
15 #ifndef INCLUDED_core_scoring_methods_SequenceDependentRefEnergy_hh
16 #define INCLUDED_core_scoring_methods_SequenceDependentRefEnergy_hh
17 
18 // Unit headers
20 
21 // Package headers
24 
25 // Project headers
26 #include <core/pose/Pose.fwd.hh>
27 #include <core/id/TorsionID.fwd.hh>
28 #include <core/id/DOF_ID.fwd.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 
34 // Utility headers
35 
36 
37 namespace core {
38 namespace scoring {
39 namespace methods {
40 
42 {
43 public:
45 
46 public:
47 
48  ///
50 
51  ///
53 
54  ///
56 
57  virtual
59  clone() const;
60 
61  /////////////////////////////////////////////////////////////////////////////
62  // methods for ContextIndependentOneBodyEnergies
63  /////////////////////////////////////////////////////////////////////////////
64 
65  ///
66  virtual
67  void
69  conformation::Residue const & rsd,
70  pose::Pose const & pose,
71  EnergyMap & emap
72  ) const;
73 
74  bool
75  minimize_in_whole_structure_context( pose::Pose const & ) const { return false; }
76 
77  ///
78  virtual
79  Real
81  id::DOF_ID const & dof_id,
82  id::TorsionID const & tor_id,
83  pose::Pose const & pose,
84  ScoreFunction const & sfxn,
85  EnergyMap const & weights
86  ) const;
87 
88  /// @brief DunbrackEnergy is context independent; indicates that no
89  /// context graphs are required
90  virtual
92 
93 
94 private:
96 
98  virtual
99  core::Size version() const;
100 };
101 
102 } // methods
103 } // scoring
104 } // core
105 
106 
107 #endif