Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MembraneLipo.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/MembraneLipo.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_MembraneLipo_hh
16 #define INCLUDED_core_scoring_methods_MembraneLipo_hh
17 
18 
19 // Package headers
24 
25 #include <utility/vector1.hh>
26 
27 
28 // Project headers
29 
30 // Utility headers
31 
32 
33 namespace core {
34 namespace scoring {
35 namespace methods {
36 
37 
39 public:
41 
42 public:
43 
44  ///
45  MembraneLipo();
46 
47  /// clone
48  virtual
50  clone() const;
51 
52  /////////////////////////////////////////////////////////////////////////////
53  // scoring
54  /////////////////////////////////////////////////////////////////////////////
55 
56  void
58  pose::Pose & pose,
59  ScoreFunction const &,
60  EnergyMap & totals
61  ) const;
62  virtual
63  void
64  setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const;
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