Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MMLJEnergyIntra.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/MMLJEnergyIntra.hh
11 /// @brief molecular mechanics lj energy
12 /// @author P. Douglas Renfrew (renfrew@unc.edu)
13 
14 #ifndef INCLUDED_core_scoring_methods_MMLJEnergyIntra_hh
15 #define INCLUDED_core_scoring_methods_MMLJEnergyIntra_hh
16 
17 // Unit headers
19 // AUTO-REMOVED #include <core/scoring/mm/MMLJLibrary.hh>
20 // AUTO-REMOVED #include <core/scoring/mm/MMLJEnergyTable.hh>
21 
22 // Package headers
25 
26 // Project headers
27 #include <core/pose/Pose.fwd.hh>
28 #include <core/types.hh>
29 
30 // C++ headers
31 #include <iostream>
32 
34 #include <utility/vector1.hh>
35 
36 
37 
38 namespace core {
39 namespace scoring {
40 namespace methods {
41 
43 public:
45 public:
46 
47  /// ctor
49 
50  /// clone
51  virtual
53  clone() const;
54 
55  void
57  pose::Pose & pose,
58  ScoreFunction const & sfxn,
59  kinematics::MinimizerMapBase const & min_map
60  ) const;
61 
62  ///
63  virtual
64  void
66  conformation::Residue const & rsd1,
67  conformation::Residue const & rsd2,
68  pose::Pose const & pose,
69  ScoreFunction const &,
70  EnergyMap & emap
71  ) const;
72 
73  virtual
74  void
76  id::AtomID const & id,
77  pose::Pose const & pose,
78  kinematics::DomainMap const & /* domain_map*/,
79  ScoreFunction const & /*sfxn*/,
80  EnergyMap const & weights,
81  Vector & F1,
82  Vector & F2
83  ) const;
84 
85  virtual
86  bool
87  defines_intrares_energy( EnergyMap const & ) const;
88 
89  virtual
90  void
92  conformation::Residue const & rsd,
93  pose::Pose const & pose,
94  ScoreFunction const & sfxn,
95  EnergyMap & emap
96  ) const;
97 
98  /// @brief MMLJEnergy does not have an atomic interation threshold
99  virtual
100  Distance
102 
103  /// @brief MMLJEnergy is context independent; indicates that no context graphs are required
104  virtual
105  void
107 
108  /// @brief required for neighbor list and to be more lke the ETable
111  Size res1,
112  Size res2,
113  pose::Pose const & pose,
114  ScoreFunction const & sfxn
115  ) const;
116 
117  /// @brief required for neighbor list and to be more lke the ETable
120  conformation::Residue const & res1,
121  conformation::Residue const & res2,
122  pose::Pose const & pose,
123  ScoreFunction const & sfxn
124  ) const;
125 
126  /// @brief required for neighbor list and to be more lke the ETable
129  conformation::Residue const & res,
130  pose::Pose const & pose,
131  ScoreFunction const & sfxn
132  ) const;
133 
134 private:
136 virtual
137 core::Size version() const;
138 
139 };
140 
141 } // namespace methods
142 } // namespace scoring
143 } // namespace core
144 
145 
146 #endif // INCLUDED_core_scoring_methods_MMLJEnergyIntra_HH