Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MMBondLengthScore.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/MMBondLengthScore.hh
11 /// @brief Molecular mechanics bond length score class
12 /// @author Frank DiMaio (based on Colin Smith's MMBondAngle potential)
13 
14 
15 #ifndef INCLUDED_core_scoring_mm_MMBondLengthScore_hh
16 #define INCLUDED_core_scoring_mm_MMBondLengthScore_hh
17 
18 // Unit headers
19 /// you cannot #include yourself #include <core/scoring/mm/MMBondLengthScore.hh>
21 
22 // Project headers
24 
25 #include <core/types.hh>
26 
27 // Utility header
28 #include <utility/pointer/access_ptr.hh>
29 #include <utility/pointer/owning_ptr.hh>
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 // C++ headers
33 #include <map>
34 
35 
36 namespace core {
37 namespace scoring {
38 namespace mm {
39 
40 
42 {
43 public:
44  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
45  virtual ~MMBondLengthScore();
46 
48  MMBondLengthScore( MMBondLengthLibrary const & mmtl );
49 
50  Real score( Real Kb, Real b0, Real d ) const;
51  Real score( mm_bondlength_atom_pair mm_atomtype_set, Real d ) const;
52 
53  Real dscore( Real Kb, Real b0, Real d ) const;
54  Real dscore( mm_bondlength_atom_pair bondlength_atom_set, Real d ) const;
55 
56 private:
57 
58  /// @brief Local MMBondLengthLibrary for looking up bond angle parameters
60 
61 };
62 
63 } // namespace mm
64 } // namespace scoring
65 } // namespace core
66 
67 
68 #endif // INCLUDED_core_mm_MMBondLengthScore_HH