Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
features
GeometricSolvationFeatures.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/GeometricSolvationFeatures.hh
11
/// @brief report hydrogen bonding based solvation model to a features database
12
/// @author Matthew O'Meara (mattjomeara@gmail.com)
13
14
#ifndef INCLUDED_protocols_features_GeometricSolvationFeatures_hh
15
#define INCLUDED_protocols_features_GeometricSolvationFeatures_hh
16
17
// Unit Headers
18
#include <
protocols/features/FeaturesReporter.hh
>
19
#include <
protocols/features/GeometricSolvationFeatures.fwd.hh
>
20
21
//External
22
#include <boost/uuid/uuid.hpp>
23
24
// Project Headers
25
#include <
core/types.hh
>
26
#include <
core/scoring/geometric_solvation/ExactOccludedHbondSolEnergy.hh
>
27
#include <utility/sql_database/DatabaseSessionManager.fwd.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
class
GeometricSolvationFeatures
:
public
FeaturesReporter
{
40
public
:
41
GeometricSolvationFeatures
();
42
43
GeometricSolvationFeatures
(
GeometricSolvationFeatures
const
& src);
44
45
virtual
~GeometricSolvationFeatures
(){}
46
47
///@brief return string with class name
48
std::string
49
type_name
()
const
;
50
51
///@brief generate the table schemas and write them to the database
52
void
53
write_schema_to_db
(
54
utility::sql_database::sessionOP db_session)
const
;
55
56
private
:
57
///@brief generate the atom_in_residue_pairs table schema
58
void
59
write_geometric_solvation_table_schema
(
60
utility::sql_database::sessionOP db_session)
const
;
61
62
public
:
63
///@brief return the set of features reporters that are required to
64
///also already be extracted by the time this one is used.
65
utility::vector1<std::string>
66
features_reporter_dependencies
()
const
;
67
68
69
///@brief collect all the feature data for the pose
70
core::Size
71
report_features
(
72
core::pose::Pose
const
& pose,
73
utility::vector1< bool >
const
&,
74
boost::uuids::uuid struct_id,
75
utility::sql_database::sessionOP db_session);
76
77
private
:
78
core::scoring::geometric_solvation::ExactOccludedHbondSolEnergy
geo_sol_energy_
;
79
80
};
81
82
83
}
// features namespace
84
}
// protocols namespace
85
86
#endif // include guard
Generated on Sat Jun 1 2013 11:49:01 for Rosetta 3.5 by
1.8.4