Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DatabaseFilters.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/DatabaseFilters.hh
11 /// @brief report atom-atom pair geometry and scores to features Statistics Scientific Benchmark
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_features_DatabaseFilters_hh
15 #define INCLUDED_protocols_features_DatabaseFilters_hh
16 
17 // Unit Headers
19 
20 //External
21 #include <boost/uuid/uuid.hpp>
22 
23 // Project Headers
24 #include <core/pose/Pose.fwd.hh>
25 #include <core/types.hh>
26 #include <utility/sql_database/DatabaseSessionManager.fwd.hh>
27 #include <utility/pointer/ReferenceCount.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 
39 typedef std::pair<bool, utility::vector1<boost::uuids::uuid> > WriteDeletePair;
40 
42 
44 public:
47  core::pose::Pose const & pose,
48  utility::sql_database::sessionOP db_session,
49  core::Size const & protocol_id
50  )=0;
51  virtual ~DatabaseFilter(){};
52 
53 private:
54  DatabaseFilter( DatabaseFilter const & src );
55 };
56 
58 public:
62  core::pose::Pose const & pose,
63  utility::sql_database::sessionOP db_session,
64  core::Size const & protocol_id
65  );
66  virtual ~TopCountOfEachInput(){};
69 private:
71 };
72 
74 public:
78  core::pose::Pose const & pose,
79  utility::sql_database::sessionOP db_session,
80  core::Size const & protocol_id
81  );
82  virtual ~TopCountOfAllInputs(){};
85 private:
87 };
88 
90 public:
93  core::pose::Pose const & pose,
94  utility::sql_database::sessionOP db_session,
95  core::Size const & protocol_id
96  );
98 private:
101 };
102 
104 public:
107  core::pose::Pose const & pose,
108  utility::sql_database::sessionOP db_session,
109  core::Size const & protocol_id
110  );
112 private:
115 };
116 
117 } // namespace
118 } // namespace
119 
120 #endif // include guard