Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SSFeature.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
11 /// @brief
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_protocols_comparative_modeling_features_SSFeature_HH
15 #define INCLUDED_protocols_comparative_modeling_features_SSFeature_HH
16 
17 #include <core/types.hh>
18 #include <core/pose/Pose.fwd.hh>
19 // AUTO-REMOVED #include <utility/vector1.hh>
20 
24 
25 #include <utility/vector1.hh>
26 
27 namespace protocols {
28 namespace comparative_modeling {
29 namespace features {
30 
31 enum SSType {
32  H_SS = 1,
37 };
38 
39 class SSFeature : public ResidueFeature {
40 public:
41  SSFeature();
42  SSFeature( SSFeature const & other );
43  SSFeature( SSType bin );
44 
46  values_from_pose( core::pose::Pose & pose ) const;
47 
48  std::string type() const;
49 
50  ResidueFeatureOP clone() const;
51 
52  SSType ss_type() const;
53 
54  static SSType char2ss_type(
55  char const ss
56  );
57 
58 private:
60 }; // SSFeature
61 
62 } // features
63 } // comparative_modeling
64 } // protocols
65 
66 #endif