Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RMS_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/RMS_Energy.hh
11 /// @brief RMS Energy function. Used to optimize the RMSD between two structures.
12 /// @author James Thompson
13 
14 
15 #ifndef INCLUDED_core_scoring_methods_RMS_Energy_hh
16 #define INCLUDED_core_scoring_methods_RMS_Energy_hh
17 
18 
19 // Package headers
23 
24 
25 // Project headers
26 #include <core/pose/Pose.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 // Utility headers
32 
33 
34 namespace core {
35 namespace scoring {
36 namespace methods {
37 
38 
40 public:
42 
43 public:
44 
45  ///
46  RMS_Energy();
47 
48  /// clone
49  virtual
51  clone() const;
52 
53  /////////////////////////////////////////////////////////////////////////////
54  // scoring
55  /////////////////////////////////////////////////////////////////////////////
56 
57  void
59  pose::Pose & pose,
60  ScoreFunction const &,
61  EnergyMap & totals
62  ) const;
63 
64  void
66  utility::vector1< bool > & /*context_graphs_required*/
67  ) const {}
68 
69 private:
72 virtual
73 core::Size version() const;
74 };
75 
76 
77 } // methods
78 } // scoring
79 } // core
80 
81 #endif