Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MMBondAngleScore.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/MMBondAngleScore.hh
11 /// @brief Molecular mechanics bond angle score class
12 /// @author Colin A. Smith (colin.smith@ucsf.edu)
13 
14 
15 #ifndef INCLUDED_core_scoring_mm_MMBondAngleScore_hh
16 #define INCLUDED_core_scoring_mm_MMBondAngleScore_hh
17 
18 // Unit headers
22 
23 // Project headers
25 // AUTO-REMOVED #include <core/chemical/MMAtomTypeSet.hh>
26 
27 //#include <core/scoring/ScoringManager.hh>
28 
29 #include <core/types.hh>
30 
31 // Utility header
32 // AUTO-REMOVED #include <utility/keys/Key4Tuple.hh>
33 // AUTO-REMOVED #include <utility/keys/Key3Tuple.hh>
34 #include <utility/pointer/access_ptr.hh>
35 #include <utility/pointer/owning_ptr.hh>
36 #include <utility/pointer/ReferenceCount.hh>
37 
38 // C++ headers
39 // AUTO-REMOVED #include <string>
40 #include <map>
41 
42 namespace core {
43 namespace scoring {
44 namespace mm {
45 
46 /// @brief Calculates scores of mm bond angle paramater sets given an angle
47 ///
48 /// @details
49 ///
50 ///
52 {
53 
54 public:
55  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
56  virtual ~MMBondAngleScore();
57 
58  /// @brief Default ctor
60 
61  /// @brief Alternate ctor that inintalizes class with given MMBondAngleLibrary
62  MMBondAngleScore( MMBondAngleLibrary const & mmtl );
63 
64  /// @brief Returns energy given an mm_bondangle_atom_tri and an angle in radians
65  Real score( Real Ktheta, Real theta0, Real angle ) const;
66 
67  /// @brief Returns energy given an mm_bondangle_atom_tri and an angle in radians
69 
70  /// @brief Returns a derivative given an mm_bondangle_atom_trie and an angle in radians
71  Real
72  dscore( Real Ktheta, Real theta0, Real angle ) const;
73 
74  /// @brief Returns a derivative given an mm_bondangle_atom_trie and an angle in radians
75  Real
76  dscore( mm_bondangle_atom_tri mm_atomtype_set, Real angle ) const;
77 
78 private:
79 
80  /// @brief Local MMBondAngleLibrary for looking up bond angle parameters
82 
83 };
84 
85 } // namespace mm
86 } // namespace scoring
87 } // namespace core
88 
89 
90 #endif // INCLUDED_core_mm_MMBondAngleScore_HH