Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MMTorsionScore.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/MMTorsionScore.hh
11 /// @brief Molecular mechanics torsion score class
12 /// @author P. Douglas Renfrew (renfrew@unc.edu)
13 
14 
15 #ifndef INCLUDED_core_scoring_mm_MMTorsionScore_hh
16 #define INCLUDED_core_scoring_mm_MMTorsionScore_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 torsion 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 ~MMTorsionScore();
57 
58  /// @brief Default ctor
60 
61  /// @brief Alternate ctor that inintalizes class with given MMTorsionLibrary
62  MMTorsionScore( MMTorsionLibrary const & mmtl );
63 
64  /// @brief Returns energy given an mm_torsion_atom_quad and an angle in radians
66 
67  /// @brief Returns derivative of the energy given an mm_torsion_atom_quad and an angle in radians
68  Real dscore( mm_torsion_atom_quad dihedral_atom_set, Real angle ) const;
69 
70 private:
71 
72  /// @brief Local MMTorsionLibrary for looking up torsion parameters
74 
75 };
76 
77 } // namespace mm
78 } // namespace scoring
79 } // namespace core
80 
81 
82 #endif // INCLUDED_core_mm_mm_torsion_score_HH