Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MMLJScore.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/mm/MMLJScore.hh
11 /// @brief Molecular mechanics lj score class
12 /// @author P. Douglas Renfrew (renfrew@unc.edu)
13 
14 
15 #ifndef INCLUDED_core_scoring_mm_MMLJScore_hh
16 #define INCLUDED_core_scoring_mm_MMLJScore_hh
17 
18 // Unit headers
20 // AUTO-REMOVED #include <core/scoring/mm/MMLJLibrary.hh>
21 
22 // Project headers
23 // AUTO-REMOVED #include <core/chemical/MMAtomTypeSet.fwd.hh>
24 
25 // AUTO-REMOVED #include <core/scoring/EnergyMap.fwd.hh>
26 // AUTO-REMOVED #include <core/scoring/ScoringManager.hh>
27 
28 #include <core/types.hh>
29 
30 // Utility header
31 #include <utility/vector1.hh>
32 
33 // C++ headers
34 // AUTO-REMOVED #include <string>
35 // AUTO-REMOVED #include <map>
36 
38 #include <utility/pointer/ReferenceCount.hh>
39 
40 
41 namespace core {
42 namespace scoring {
43 namespace mm {
44 
45 /// @brief Calculates scores of mm lj paramater sets given two mm atom types,
46 /// the path distance of the 2 atoms and actual distance between the two atoms
47 ///
48 /// @details blah
49 ///
50 ///
52 {
53 
54 public:
55 
56  /// @brief Default ctor
57  MMLJScore();
58 
59  /// @brief Alternate ctor that inintalizes class with given MMLJLibrary
60  MMLJScore( MMLJLibrary const & mmljl );
61 
62  virtual ~MMLJScore();
63 
64  /// @brief blah
65  MMLJLibrary const &
66  mm_lj_library() const
67  { return mm_lj_library_; }
68 
69  /// @brief blah
70  Energy
71  score( Size atom1, Size atom2, Size path_distance, Real distance ) const;
72 
73  /// @brief blah
74  Energy
75  deriv_score( Size atom1, Size atom2, Size path_distance, Real distance ) const;
76 
77  /// @brief blah
78  Real
79  min_dist( Size atom1, Size atom2, Size path_distance ) const;
80 
81 private:
82 
83  /// @brief Local MMLJLibrary for looking up lj parameters
85 };
86 
87 } // namespace mm
88 } // namespace scoring
89 } // namespace core
90 
91 
92 #endif // INCLUDED_core_mm_mm_lj_score_HH