Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NatbiasHelixPairPotential.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 ./src/protocols/fldsgn/potentials/sspot/NatbiasHelixPairPotential.cc
11 /// @brief header file of NatbiasHelixPairPotential
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 
15 #ifndef INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasHelixPairPotential_hh
16 #define INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasHelixPairPotential_hh
17 
18 #include <core/types.hh>
19 #include <core/pose/Pose.fwd.hh>
23 
24 // Utility Headers
25 #include <utility/pointer/ReferenceCount.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace protocols {
31 namespace fldsgn {
32 namespace potentials {
33 namespace sspot {
34 
36 public:
37 
38 
39  typedef core::Size Size;
40  typedef core::Real Real;
49 
50 
51 public: // construct/destruct
52 
53 
54  /// @brief default constructor
56 
57  /// @brief value constructor
59 
60  /// @brief copy constructor
62 
63  /// @brief default destructor
65 
66 
67 public:
68 
69 
70  void set_params();
71 
72 
73 public: // mutator
74 
75 
76  void set_hpairset( HelixPairingSetOP const hpairset );
77 
78  /// @brief set parameters for distance score between mid points of helices
79  void set_params_distance_pot( Real w, Real d, Real s );
80 
81  /// @brief set parameters for angle score of helix pair
82  void set_params_angle_pot( Real w, Real d, Real s );
83 
84  /// @brief
85  void set_dist_wts( Real const r ) { dist_wts_ = r; }
86 
87  /// @brief set distance parmeter
88  void set_dist( Real const r ) { mid_dist_ = r; }
89 
90  /// @brief
91  void set_dist_sigma2( Real const r ) { dist_sigma2_ = r; }
92 
93  /// @brief
94  void set_angle_wts( Real const r ) { angle_wts_ = r; }
95 
96  /// @brief
97  void set_angle( Real const r ) { cross_angle_ = r; }
98 
99  /// @brief
100  void set_angle_sigma2( Real const r ) { angle_sigma2_ = r; }
101 
102  /// @brief set bend angle
103  void set_bendangle( Real r ) { bend_angle_ = r; }
104 
105 
106 
107 public: // useful functions
108 
109 
110  void show( Pose const & pose ) const;
111 
112  /// @brief show parameters
113  void show_params() const;
114 
115 
116 public: // scoring
117 
118 
119  /// @brief score secondary structure
120  void score( SS_Info2_COP const ss_info, Real & hh_score ) const;
121 
122 
123 private: // secondary structure data
124 
125 
126  /// @brief
128 
129  /// @brief
131 
132  /// @brief optimal maximum length between mid points of helices
134 
135  /// @brief
137 
138  /// @brief
140 
141  /// @brief optimal maximum angle of helix pair
143 
144  /// @brief
146 
147  /// @brief
149 
150  /// @brief
152 
153 
154 };
155 
156 } // ns sspot
157 } // ns potentials
158 } // ns fldsgn
159 } // ns protocols
160 
161 
162 #endif