Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DNA_BaseEnergy.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/DNA_BaseEnergy.hh
11 /// @brief Statistically derived rotamer pair potential class declaration
12 /// @author Phil Bradley
13 
14 
15 #ifndef INCLUDED_core_scoring_methods_DNA_BaseEnergy_hh
16 #define INCLUDED_core_scoring_methods_DNA_BaseEnergy_hh
17 
18 // Unit Headers
20 
21 
22 // Package headers
25 
26 // Project headers
27 #include <core/pose/Pose.fwd.hh>
30 
31 #include <utility/vector1.hh>
32 
33 
34 // Utility headers
35 
36 
37 namespace core {
38 namespace scoring {
39 namespace methods {
40 
41 ///
43 public:
45 public:
46 
47  ///
49 
50 
51  /// clone
52  virtual
54  clone() const;
55 
56  virtual
57  void
58  setup_for_derivatives( pose::Pose & pose, ScoreFunction const & ) const;
59 
60  virtual
61  void
62  setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const;
63 
64  virtual
65  void
67 
68  /////////////////////////////////////////////////////////////////////////////
69  // scoring
70  /////////////////////////////////////////////////////////////////////////////
71 
72  virtual
73  void
75  conformation::Residue const & rsd1,
76  conformation::Residue const & rsd2,
77  pose::Pose const & pose,
78  ScoreFunction const &,
79  EnergyMap & emap
80  ) const;
81 
82 
83  virtual
84  void
86  conformation::Residue const &,
87  pose::Pose const &,
88  ScoreFunction const &,
89  EnergyMap &
90  ) const {}
91 
92 
93  virtual
94  void
96  id::AtomID const & atom_id,
97  pose::Pose const & pose,
98  kinematics::DomainMap const & domain_map,
99  ScoreFunction const &,
100  EnergyMap const & weights,
101  Vector & F1,
102  Vector & F2
103  ) const;
104 
105  virtual
106  bool
107  defines_intrares_energy( EnergyMap const & /*weights*/ ) const { return false; }
108 
109  virtual
110  Distance
112 
113  virtual
114  void indicate_required_context_graphs( utility::vector1< bool > & context_graphs_required ) const;
115 
116  /////////////////////////////////////////////////////////////////////////////
117  // data
118  /////////////////////////////////////////////////////////////////////////////
119 
120 private:
121 
123 virtual
124 core::Size version() const;
125 
126 };
127 
128 
129 }
130 }
131 }
132 
133 #endif // INCLUDED_core_scoring_ScoreFunction_HH