Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NatbiasSheetPotential.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/NatbiasSheetPotential.cc
11 /// @brief header file of NatbiasSheetPotential
12 /// @author Nobuyasu Koga ( nobuyasu@uw.edu )
13 
14 
15 #ifndef INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasSheetPotential_hh
16 #define INCLUDED_protocols_fldsgn_potentials_sspot_NatbiasSheetPotential_hh
17 
18 #include <core/types.hh>
19 #include <core/pose/Pose.fwd.hh>
22 
23 // Utility Headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 namespace protocols {
27 namespace fldsgn {
28 namespace potentials {
29 namespace sspot {
30 
32 public:
33 
34 
35  typedef core::Size Size;
36  typedef core::Real Real;
42 
43 
44 public: // construct/destruct
45 
46 
47  /// @brief default constructor
49 
50  /// @brief value constructor
51  NatbiasSheetPotential( SheetingSetOP const hpairset );
52 
53  /// @brief copy constructor
55 
56  /// @brief default destructor
58 
59 
60 public: // mutator
61 
62 
63  void set_hpairset( SheetingSetOP const hpairset );
64 
65 
66 public: // useful functions
67 
68 
69  void show( Pose const & pose ) const;
70 
71 
72 public: // scoring
73 
74 
75  /// @brief score secondary structure
76  void score( SS_Info2_COP const ssinfo ) const;
77 
78 
79 public: // mutator
80 
81 
82 
83 
84 
85 private: // secondary structure data
86 
87 
88 
89 
90 };
91 
92 } // ns sspot
93 } // ns potentials
94 } // ns fldsgn
95 } // ns protocols
96 
97 
98 #endif