Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_BaseBaseEnergy.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/rna/RNA_BaseBaseEnergy.hh
11 /// @brief Statistically derived rotamer pair potential class declaration
12 /// @author Phil Bradley
13 
14 
15 #ifndef INCLUDED_core_scoring_rna_RNA_BaseBaseEnergy_hh
16 #define INCLUDED_core_scoring_rna_RNA_BaseBaseEnergy_hh
17 
18 // Unit Headers
20 
21 // Package headers
24 
25 // Project headers
26 #include <core/pose/Pose.fwd.hh>
27 
28 // Utility headers
29 
30 
31 namespace core {
32 namespace scoring {
33 namespace rna {
34 
35 ///
36 
37 // Note that this could *almost* be a TwoBodyContextIndependentEnergy.
38 // The problem is that for low resolution structures,
39 // the base pair and base stack list needs to be filtered to
40 // disallow a single base edge from forming multiple base pairs, or
41 // for two bases to both pair and stack.
42 //
43 
44 
46 public:
47 
48  ///
50 
51 
52  /// clone
53  virtual
55  clone() const;
56 
57  /////////////////////////////////////////////////////////////////////////////
58  // scoring
59  /////////////////////////////////////////////////////////////////////////////
60 
61  virtual
62  void
63  setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const;
64 
65  virtual
66  void
67  setup_for_derivatives( pose::Pose & pose, ScoreFunction const & ) const;
68 
69  virtual
70  void
72  pose::Pose & pose,
73  ScoreFunction const &,
74  EnergyMap &// totals
75  ) const;
76 
77  virtual
78  void
80  id::AtomID const & atom_id,
81  pose::Pose const & pose,
82  kinematics::DomainMap const &,
83  ScoreFunction const &,
84  EnergyMap const & weights,
85  Vector & F1,
86  Vector & F2 ) const;
87 
88  virtual
89  Distance
91 
92  virtual
94 
95 
96  // Undefinded, comented out to make python bindings complile
97  //void
98  //figure_out_rna_base_pairs_to_score() const;
99 
100  // Undefinded, comented out to make python bindings complile
101  //void
102  //figure_out_rna_base_stacks_to_score() const;
103 
104  // Undefinded, comented out to make python bindings complile
105  //void
106  //figure_out_which_interactions_to_score() const;
107 
108 
109  /////////////////////////////////////////////////////////////////////////////
110  // data
111  /////////////////////////////////////////////////////////////////////////////
112 
113 private:
114 
115  // const-ref to scoring database
117 
118 };
119 
120 
121 }
122 }
123 }
124 
125 #endif // INCLUDED_core_scoring_ScoreFunction_HH