Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ReferenceEnergyNoncanonical.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/ReferenceEnergyNoncanonical.hh
11 /// @brief Reference energy method declaration
12 /// @author Fang-Chieh Chou (fcchou@stanford.edu)
13 
14 
15 
16 #ifndef INCLUDED_core_scoring_methods_ReferenceEnergyNoncanonical_hh
17 #define INCLUDED_core_scoring_methods_ReferenceEnergyNoncanonical_hh
18 
19 // Unit headers
21 
22 // Package headers
25 
26 // Project headers
27 #include <core/pose/Pose.fwd.hh>
28 #include <core/id/TorsionID.fwd.hh>
29 #include <core/id/DOF_ID.fwd.hh>
30 
31 #include <utility/vector1.hh>
32 
33 
34 
35 // Utility headers
36 
37 
38 namespace core {
39 namespace scoring {
40 namespace methods {
41 
43 {
44 public:
46 
47 public:
48 
49  ///
51 
52  ///
54 
55  ///
57 
58  virtual
60  clone() const;
61 
62  /////////////////////////////////////////////////////////////////////////////
63  // methods for ContextIndependentOneBodyEnergies
64  /////////////////////////////////////////////////////////////////////////////
65 
66  ///
67  virtual
68  void
70  conformation::Residue const & rsd,
71  pose::Pose const & pose,
72  EnergyMap & emap
73  ) const;
74 
75  ///
76  virtual
77  Real
79  id::DOF_ID const & dof_id,
80  id::TorsionID const & tor_id,
81  pose::Pose const & pose,
82  ScoreFunction const & sfxn,
83  EnergyMap const & weights
84  ) const;
85 
86  /// @brief DunbrackEnergy is context independent; indicates that no
87  /// context graphs are required
88  virtual
90 
91  void init_res_list();
92 
93 private:
96 virtual
97 core::Size version() const;
98 
99 };
100 
101 } // methods
102 } // scoring
103 } // core
104 
105 
106 #endif