Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NatbiasHelicesSheetPotential.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 protocols/fldsgn/potentials/sspot/NatbiasHelicesSheetPotential.hh
11 /// @brief centroid score for helices on sheet
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 
15 #ifndef INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasHelicesSheetPotential_hh
16 #define INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasHelicesSheetPotential_hh
17 
18 // Unit headers
20 
21 // Package headers
25 
26 // Project headers
27 #include <core/types.hh>
28 
29 // Utility Headers
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 namespace protocols {
36 namespace fldsgn {
37 namespace potentials {
38 namespace sspot {
39 
41 public: // typedef
42 
43 
44  typedef core::Size Size;
45  typedef core::Real Real;
53 
54 
55 public: // construct/destruct
56 
57 
58  /// @brief default constructor
60 
61  /// @brief value constructor
63 
64  /// @brief value constructor
66 
67  /// @brief copy constructor
69 
70  /// @brief default destructor
72 
73 
74 public:
75 
76 
77  /// @brief set parameters
78  void set_params();
79 
80 
81 public: // mutator
82 
83 
84  /// @brief set HSSTripletSet
85  void
86  hss_triplet_set( HSSTripletSetOP const hss3set );
87 
88  /// @brief set HelixPairingSet
89  void
91 
92  /// @brief set dist parameters for helix-strands interaction
93  void
95  Real const hs_dist_wts,
96  Real const hs_dist,
97  Real const hs_dist_sigma2 );
98 
99  /// @brief set dist parameters for helix-sheet interaction
100 
101  void set_hs_atr_dist_wts( Real const r ) { hs_dist_wts_ = r; }
102  void set_hs_atr_dist( Real const r ) { hs_dist_ = r; }
103  void set_hs_atr_dist_sigma2( Real const r ) { hs_dist_sigma2_ = r; }
104  void set_hs_angle_wts( Real const r ) { hs_angle_wts_ = r; }
105  void set_hs_angle( Real const r ) { hs_angle_ = r; }
106  void set_hs_angle_sigma2( Real const r ) { hs_angle_sigma2_ = r; }
108  void set_hh_angle_wts( Real const r ) { hh_align_angle_wts_ = r; }
109  void set_hh_angle( Real const r ) { hh_align_angle_ = r;}
111 
112  void
113  set_repldist_params_helix_sheet( Real const hsheet_dist_repulsive );
114 
115  /// @brief set angle parameters for helix-sheet interaction
116  void
118  Real const hs_angle_wts,
119  Real const hs_angle,
120  Real const hs_angle_sigma2 );
121 
122  /// @brief set angle parameters for helices projected onto sheet
123  void
125  Real const hh_align_angle_wts,
126  Real const hh_align_angle,
127  Real const hh_align_angle_sigma2 );
128 
129 
130 public: // accessor
131 
132 
133  /// @brief shows parameters for score calculation
134  void show_params() const;
135 
136 
137 public: // scoring
138 
139 
140  /// @brief calc score
141  void score( SS_Info2_COP const ss_info, Real & hh_score, Real & hs_score ) const;
142 
143 
144 private: // secondary structure data
145 
146 
147  /// @brief HSSTripletSet
149 
150  /// @brief HelixPairingSet
152 
153  /// @brief score between helix and sheet
155 
156  /// @brief weights for distant score between helix and sheet
158 
159  /// @brief maximum distance for the most favorable interaction between helix and sheet
161 
162  /// @brief sigma for distance score between helix and sheet
164 
165  /// @brief repulsive distance between helix and sheet
167 
168  /// @brief weights for angle score between helix and sheet
170 
171  /// @brief maximum angle for the most favorable interaction between helix and sheet
173 
174  /// @brief sigma for angle score between helix and sheet
176 
177  /// @brief score of helix pair on sheet
179 
180  /// @brief weight for angle score of helix pair
182 
183  /// @brief maximum angle for the most favorable interaction of helix-pair on sheet
185 
186  /// @brief sigma for angle score of helix pair
188 
189 };
190 
191 } // ns sspot
192 } // ns potentials
193 } // ns fldsgn
194 } // ns protocols
195 
196 
197 #endif