Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HelicalFragment.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 HelicalFragment.hh
11 ///
12 /// @brief Small helper class that stores the start and end of a helix secondary structure
13 
14 /// @author Tim jacobs
15 
16 #ifndef INCLUDED_protocols_features_helixAssembly_HELICALFRAGMENT_HH
17 #define INCLUDED_protocols_features_helixAssembly_HELICALFRAGMENT_HH
18 
20 
21 //Core
22 #include <core/types.hh>
23 #include <core/pose/Pose.hh>
24 
25 //Utility
26 #include <utility/vector1.fwd.hh>
27 #include <utility/pointer/ReferenceCount.hh>
28 
29 //Devel
30 //#include <devel/helixAssembly/NativeResidue.hh>
31 
32 //Numeric
33 #include <numeric/xyzVector.hh>
34 
35 //C++ Headers
36 #include <string>
37 #include <vector>
38 #include <map>
39 
40 namespace protocols {
41 namespace features {
42 namespace helixAssembly {
43 
45 
46 public:
47 
49 
51 
52  core::Size seq_start() const;
53  core::Size seq_end() const;
54  core::Size end() const;
55  // Undefined, commenting out to fix PyRosetta build. std::string get_pdb_source() const;
56  core::Size start() const;
57  core::Size size() const;
58  bool reversed() const;
59 
62 
65 
66  void sasa(core::Real sasa);
67  core::Real sasa() const;
68 
69  /// @brief output operator
70  friend std::ostream & operator <<(std::ostream & os, HelicalFragment const & t);
71 
72 private:
76  bool direction_;
80 };
81 
82 }
83 }
84 }
85 
86 #endif