Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueConformationFeatures.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/ProteinResidueConformationFeatures.hh
11 /// @brief report idealized torsional DOFs Statistics Scientific Benchmark
12 /// @author Matthew O'Meara
13 /// @author Sam DeLuca
14 
15 #ifndef INCLUDED_protocols_features_ResidueConformationFeatures_hh
16 #define INCLUDED_protocols_features_ResidueConformationFeatures_hh
17 
18 // Unit Headers
21 
22 //External
23 #include <boost/uuid/uuid.hpp>
24 
25 // Project Headers
26 #include <core/types.hh>
27 // AUTO-REMOVED #include <core/pose/Pose.hh>
28 // AUTO-REMOVED #include <core/id/AtomID_Map.fwd.hh>
29 // AUTO-REMOVED #include <utility/sql_database/DatabaseSessionManager.hh>
30 #include <utility/vector1.fwd.hh>
31 
32 // C++ Headers
33 #include <string>
34 
35 #include <utility/vector1.hh>
36 
37 
38 namespace protocols{
39 namespace features{
40 
42 public:
44 
46  ResidueConformationFeatures const & ) :
48  {}
49 
51 
52  ///@brief generate the table schemas and write them to the database
53  virtual void
54  write_schema_to_db(utility::sql_database::sessionOP db_session) const;
55 
56  ///@brief return the set of features reporters that are required to
57  ///also already be extracted by the time this one is used.
60 
61  ///@brief return string with class name
63  type_name() const;
64 
65  ///@brief collect all the feature data for the pose
68  core::pose::Pose const & pose,
69  utility::vector1< bool > const & relevant_residues,
70  boost::uuids::uuid struct_id,
71  utility::sql_database::sessionOP db_session);
72 
73  void
75  boost::uuids::uuid struct_id,
76  utility::sql_database::sessionOP);
77 
78  void
80  utility::sql_database::sessionOP db_session,
81  boost::uuids::uuid struct_id,
82  core::pose::Pose & pose);
83 
84  void
86  utility::sql_database::sessionOP db_session,
87  boost::uuids::uuid struct_id,
88  core::pose::Pose & pose);
89 
90 private:
91  void
93  utility::sql_database::sessionOP db_session,
94  boost::uuids::uuid struct_id,
95  core::Size seqpos,
96  core::pose::Pose & pose);
97 
98 
99 };
100 
101 } // features
102 } // protocols
103 
104 #endif // include guard