Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MembraneEnvPenalties.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/MembraneEnvPenalties.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_MembraneEnvPenalties_hh
16 #define INCLUDED_core_scoring_methods_MembraneEnvPenalties_hh
17 
18 
19 // Package headers
24 
25 // Project headers
26 // AUTO-REMOVED #include <core/pose/Pose.hh>
27 #include <core/pose/Pose.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 // Utility headers
33 
34 
35 namespace core {
36 namespace scoring {
37 namespace methods {
38 
39 
41 public:
43 
44 public:
45 
46  ///
48 
49  /// clone
50  virtual
52  clone() const;
53 
54  /////////////////////////////////////////////////////////////////////////////
55  // scoring
56  /////////////////////////////////////////////////////////////////////////////
57 
58  void
60  pose::Pose & pose,
61  ScoreFunction const &,
62  EnergyMap & totals
63  ) const;
64 
65  void
67  utility::vector1< bool > & /*context_graphs_required*/
68  ) const {}
69 
70 private:
71  // const-ref to scoring database
73 virtual
74 core::Size version() const;
75 };
76 
77 
78 } // methods
79 } // scoring
80 } // core
81 
82 #endif