Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RG_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/RG_Energy.hh
11 /// @brief
12 /// @author James Thompson
13 
14 
15 #ifndef INCLUDED_core_scoring_methods_RG_Energy_hh
16 #define INCLUDED_core_scoring_methods_RG_Energy_hh
17 
18 
19 // Package headers
22 
23 // Project headers
24 #include <core/pose/Pose.fwd.hh>
25 
26 // Utility headers
27 
28 
29 namespace core {
30 namespace scoring {
31 namespace methods {
32 
33 
35 public:
36 
37  ///
38  RG_Energy();
39 
40  /// clone
41  virtual
43  clone() const;
44 
45  /////////////////////////////////////////////////////////////////////////////
46  // scoring
47  /////////////////////////////////////////////////////////////////////////////
48 
49  void
51  pose::Pose & pose,
52  ScoreFunction const &,
53  EnergyMap & totals
54  ) const;
55 
56  void
58  utility::vector1< bool > & /*context_graphs_required*/
59  ) const {}
60 
61 private:
62 
63 
64 };
65 
66 
67 } // methods
68 } // scoring
69 } // core
70 
71 #endif