Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueGridScoresFeatures.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/qsar/scoring_grid/ResidueGridScoresFeatures.hh
11 /// @brief detailed per atom scores of Scoring Grids
12 /// @author Sam DeLuca
13 
14 #ifndef INCLUDED_protocols_features_ResidueGridScoresFeatures_hh
15 #define INCLUDED_protocols_features_ResidueGridScoresFeatures_hh
16 
19 
20 // Utility Headers
21 #include <utility/vector1.hh>
22 #include <utility/tag/Tag.fwd.hh>
23 #include <core/pose/Pose.fwd.hh>
26 
27 
28 namespace protocols {
29 namespace features{
30 
32 public:
34 
36 
38 
39  ///@brief return string with class name
41  type_name() const;
42 
43  ///@brief generate the table schemas and write them to the database
44  void
46  utility::sql_database::sessionOP db_session) const;
47 
48  ///@brief return the set of features reporters that are required to
49  ///also already be extracted by the time this one is used.
52 
53  ///@brief collect all the feature data for the pose
56  core::pose::Pose const & pose,
57  utility::vector1< bool > const & relevant_residues,
58  boost::uuids::uuid struct_id,
59  utility::sql_database::sessionOP db_session);
60 
61  void
63  utility::tag::TagPtr const tag,
65  protocols::filters::Filters_map const & /*filters*/,
66  protocols::moves::Movers_map const & /*movers*/,
67  core::pose::Pose const & /*pose*/);
68 
69 private:
70  char chain_;
71 
72 
73 };
74 
75 }
76 }
77 
78 
79 #endif