Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScoreTypeFeatures.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/ScoreTypeFeatures.hh
11 /// @brief Structure scores to features Statistics Scientific Benchmark
12 /// @author Matthew O'Meara
13 
14 #ifndef INCLUDED_protocols_features_ScoreTypeFeatures_hh
15 #define INCLUDED_protocols_features_ScoreTypeFeatures_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 <utility/vector1.fwd.hh>
27 
28 // C++ Headers
29 #include <string>
30 
32 #include <utility/vector1.hh>
33 #include <utility/exit.hh>
34 
35 namespace protocols{
36 namespace features{
37 
39 public:
41 
44 
45  ScoreTypeFeatures( ScoreTypeFeatures const & src );
46 
47  virtual ~ScoreTypeFeatures();
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  ///@brief return the set of features reporters that are required to
58  ///also already be extracted by the time this one is used.
61 
64  core::pose::Pose const &,
66  boost::uuids::uuid struct_id,
67  utility::sql_database::sessionOP db_session);
68 
71  core::Size const batch_id,
72  utility::sql_database::sessionOP db_session);
73 
74  void delete_record(
75  boost::uuids::uuid struct_id,
76  utility::sql_database::sessionOP db_session
77  );
78 
79 private:
80  void
82  core::Size protocol_id,
83  utility::sql_database::sessionOP db_session
84  );
85 
86 private:
88 
89 };
90 
91 } // namespace
92 } // namespace
93 
94 #endif // include guard