Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_VDW_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/rna/RNA_VDW_Energy.hh
11 /// @brief Statistically derived rotamer pair potential class declaration
12 /// @author Phil Bradley
13 /// @author Rhiju Das
14 
15 
16 #ifndef INCLUDED_core_scoring_rna_RNA_VDW_Energy_hh
17 #define INCLUDED_core_scoring_rna_RNA_VDW_Energy_hh
18 
19 // Unit Headers
21 
22 // Package headers
26 
27 // Project headers
28 #include <core/pose/Pose.fwd.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 // AUTO-REMOVED #include <map>
34 
35 // Utility headers
36 
37 
38 namespace core {
39 namespace scoring {
40 namespace rna {
41 
42 ///
44 public:
46 
47 public:
48 
49  ///
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 
73  virtual
74  void
76  conformation::Residue const & rsd1,
77  conformation::Residue const & rsd2,
78  pose::Pose const & pose,
79  ScoreFunction const &,
80  EnergyMap & emap
81  ) const;
82 
83 
84  virtual
85  void
87  conformation::Residue const &,
88  pose::Pose const &,
89  ScoreFunction const &,
90  EnergyMap &
91  ) const {}
92 
93 
94  virtual
95  void
97  id::AtomID const & atom_id,
98  pose::Pose const & pose,
99  kinematics::DomainMap const & domain_map,
100  ScoreFunction const & scorefxn,
101  EnergyMap const & weights,
102  Vector & F1,
103  Vector & F2
104  ) const;
105 
106  virtual
107  bool
108  defines_intrares_energy( EnergyMap const & /*weights*/ ) const { return false; }
109 
110  virtual
111  Distance
113 
114  virtual
115  void indicate_required_context_graphs( utility::vector1< bool > & context_graphs_required ) const;
116 
117 private:
118 
119  Size
121  utility::vector1< utility::vector1< Size > > const & atom_numbers_for_vdw_calculation,
122  Size const & pos1,
123  Size const & i ) const;
124 
125  Size
127  char const which_nucleotide,
128  Size const & i ) const;
129 
130  /////////////////////////////////////////////////////////////////////////////
131  // data
132  /////////////////////////////////////////////////////////////////////////////
133 
134 private:
135 
136  //Helper functions just to get things set up.
137  void
139 
140  // Data!
141  // const-ref to scoring database
143 
145 virtual
146 core::Size version() const;
147 };
148 
149 
150 }
151 }
152 }
153 
154 #endif // INCLUDED_core_scoring_ScoreFunction_HH