Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UnrecognizedAtomFeatures.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/UnrecognizedAtomFeatures.hh
11 /// @brief report residue to features Statistics Scientific Benchmark
12 /// @author Matthew O'Meara
13 
14 #ifndef INCLUDED_protocols_features_UnrecognizedAtomFeatures_hh
15 #define INCLUDED_protocols_features_UnrecognizedAtomFeatures_hh
16 
17 // Unit Headers
20 
21 //External
22 #include <boost/uuid/uuid.hpp>
23 
24 // Project Headers
25 #include <core/pose/Pose.fwd.hh>
26 #include <core/types.hh>
27 #include <utility/vector1.hh>
29 #include <utility/tag/Tag.fwd.hh>
30 
31 // C++ Headers
32 #include <string>
33 
34 
35 
36 namespace protocols{
37 namespace features{
38 
40 public:
42 
43  UnrecognizedAtomFeatures(core::Real neighbor_distance_cutoff);
44 
46 
47  virtual ~UnrecognizedAtomFeatures();
48 
49  ///@brief return string with class name
51  type_name() const;
52 
53  ///@brief generate the table schemas and write them to the database
54  virtual void
55  write_schema_to_db(utility::sql_database::sessionOP db_session) const;
56 
57 private:
58  ///@brief generate the unrecognized_atoms table schema
59  virtual void
61  utility::sql_database::sessionOP db_session
62  ) const;
63 
64  ///@brief generate the unrecognized_residues table schema
65  virtual void
67  utility::sql_database::sessionOP db_session
68  ) const;
69 
70  ///@brief generate the unrecognized_neighbors table schema
71  virtual void
73  utility::sql_database::sessionOP db_session
74  ) const;
75 
76 public:
77  ///@brief return the set of features reporters that are required to
78  ///also already be extracted by the time this one is used.
81 
82  void
84  utility::tag::TagPtr const tag,
85  protocols::moves::DataMap & /*data*/,
86  protocols::filters::Filters_map const & /*filters*/,
87  protocols::moves::Movers_map const & /*movers*/,
88  core::pose::Pose const & /*pose*/);
89 
90  ///@brief collect all the feature data for the pose
93  core::pose::Pose const & pose,
94  utility::vector1< bool > const & relevant_residues,
95  boost::uuids::uuid struct_id,
96  utility::sql_database::sessionOP db_session);
97 
98 private:
99  void
101  core::pose::Pose const & pose,
102  boost::uuids::uuid struct_id,
103  utility::sql_database::sessionOP db_session);
104 
105  void
107  core::pose::Pose const & pose,
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 public:
119  void
121  boost::uuids::uuid struct_id,
122  utility::sql_database::sessionOP db_sesion);
123 
124 private:
125 
127 
128 };
129 
130 } // namespace
131 } // namespace
132 
133 #endif // include guard