Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TorsionFeature.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/comparative_modeling/TorsionFeature.hh
11 /// @brief
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_protocols_comparative_modeling_features_TorsionFeature_HH
15 #define INCLUDED_protocols_comparative_modeling_features_TorsionFeature_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 TorsionBin {
32  A = 1,
33  B,
34  E,
35  G,
36  O,
37  X,
40 };
41 
43 public:
45  TorsionFeature( TorsionFeature const & other );
47 
48  std::string type() const;
49 
51  values_from_pose( core::pose::Pose & pose ) const;
52 
53  ResidueFeatureOP clone() const;
54 
55  TorsionBin torsion_bin() const;
56 
57 
58  static TorsionBin
60  core::Real const phi,
61  core::Real const psi,
62  core::Real const omega
63  );
64 
65 private:
67 }; // TorsionFeature
68 
69 } // features
70 } // comparative_modeling
71 } // protocols
72 
73 #endif