Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NatbiasSheetPotential.cc
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 calss for helix-pairing potential
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 // Unit header
16 
17 // Package headers
18 
19 // Project headers
20 #include <core/pose/Pose.hh>
23 #include <numeric/numeric.functions.hh>
24 #include <basic/Tracer.hh>
25 
26 static basic::Tracer TR("protocols.fldsgn.potentials.sspot.NatbiasHelixPairPotential", basic::t_info);
27 
28 namespace protocols {
29 namespace fldsgn {
30 namespace potentials {
31 namespace sspot {
32 
33 /// @brief default constructor
35  twist_( 15.0 )
36 {}
37 
38 
39 /// @brief value constructor
41  twist_( 15.0 )
42 {}
43 
44 
45 /// @brief copy constructor
46 NatbiasHelixPairPotential::NatbiasHelixPairPotential( NatbiasHelixPairPotential const & src ):
47  ReferenceCount(),
48  twist_( src.twist_ )
49 {}
50 
51 
52 /// @brief default destructor
54 {}
55 
56 
57 /// @brief set parameters for distance score between mid points of helices
58 void
59 NatbiasHelixPairPotential::set_param_twist( Real w, Real d, Real s )
60 {
61  twist_wts_ = w;
62  twist_ = d;
63  twist_sigma2_ = s;
64 }
65 
66 
67 /// @brief
68 void
69 NatbiasHelixPairPotential::score( SS_Info2_COP const ssinfo, Real & sheet_score ) const
70 {
71  Strands strands( ssinfo->strands() );
72  for ( Size istrand=1; istrand<=strands.size(); istrand++ ) {
73 
74 
75  }
76 } // score
77 
78 
79 } // ns sspot
80 } // ns potentials
81 } // ns fldsgn
82 } // ns protocols