Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProteinBondGeometryFeatures.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/features/ProteinBondGeometryFeatures.hh
11 /// @brief report protein backbone torsion angle features
12 /// @author Patrick Conway
13 
14 #ifndef INCLUDED_protocols_features_ProteinBondGeometryFeatures_hh
15 #define INCLUDED_protocols_features_ProteinBondGeometryFeatures_hh
16 
17 // Unit Headers
21 
22 //External
23 #include <boost/uuid/uuid.hpp>
24 
25 // Project Headers
26 #include <core/pose/Pose.fwd.hh>
27 #include <core/types.hh>
28 #include <utility/vector1.fwd.hh>
29 
30 // C++ Headers
31 #include <string>
32 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols{
37 namespace features{
38 
40 public:
42 
44 
46 
47  ///@brief return string with class name
49  type_name() const;
50 
51  ///@brief generate the table schemas and write them to the database
52  void
54  utility::sql_database::sessionOP db_session) const;
55 
56 private:
57  ///@brief generate the bond_intrares_angles table schema
58  void
60  utility::sql_database::sessionOP db_session) const;
61 
62  ///@brief generate the bond_interres_angles table schema
63  void
65  utility::sql_database::sessionOP db_session) const;
66 
67  ///@brief generate the bond_intrares_lengths table schema
68  void
70  utility::sql_database::sessionOP db_session) const;
71 
72  ///@brief generate the bond_interres_lengths table schema
73  void
75  utility::sql_database::sessionOP db_session) const;
76 
77  ///@brief generate the bond_intrares_torsions table schema
78  void
80  utility::sql_database::sessionOP db_session) const;
81 
82 
83 public:
84  ///@brief return the set of features reporters that are required to
85  ///also already be extracted by the time this one is used.
88 
89  ///@brief collect all the feature data for the pose
92  core::pose::Pose const & pose,
93  utility::vector1< bool > const & relevant_residues,
94  boost::uuids::uuid struct_id,
95  utility::sql_database::sessionOP db_session);
96 
97  void
99  core::pose::Pose const & pose,
100  utility::vector1< bool > const & relevant_residues,
101  boost::uuids::uuid struct_id,
102  utility::sql_database::sessionOP db_session);
103 
104  void
106  core::pose::Pose const & pose,
107  utility::vector1< bool > const & relevant_residues,
108  boost::uuids::uuid struct_id,
109  utility::sql_database::sessionOP db_session);
110 
111  void
113  core::pose::Pose const & pose,
114  utility::vector1< bool > const & relevant_residues,
115  boost::uuids::uuid struct_id,
116  utility::sql_database::sessionOP db_session);
117 
118  void
120  core::pose::Pose const & pose,
121  utility::vector1< bool > const & relevant_residues,
122  boost::uuids::uuid struct_id,
123  utility::sql_database::sessionOP db_session);
124 
125  void
127  core::pose::Pose const & pose,
128  utility::vector1< bool > const & relevant_residues,
129  boost::uuids::uuid struct_id,
130  utility::sql_database::sessionOP db_session);
131 
132 private:
133  // the ideal parameter database
135 
136  // options
138 
139 };
140 
141 } // namespace
142 } // namespace
143 
144 #endif // include guard