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
ChargeChargeFeatures.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/ChargeChargeFeatures.hh
11
/// @brief report comments stored with each pose
12
/// @author Joseph S Harrison
13
14
#ifndef INCLUDED_protocols_features_ChargeChargeFeatures_hh
15
#define INCLUDED_protocols_features_ChargeChargeFeatures_hh
16
17
// Unit Headers
18
#include <
protocols/features/FeaturesReporter.hh
>
19
#include <
protocols/features/ChargeChargeFeatures.fwd.hh
>
20
21
// Project Headers
22
#include <
core/types.hh
>
23
// AUTO-REMOVED #include <core/pose/Pose.hh>
24
#include <utility/vector1.fwd.hh>
25
26
// C++ Headers
27
#include <string>
28
29
#include <utility/vector1.hh>
30
31
32
namespace
protocols{
33
namespace
features{
34
35
class
ChargeChargeFeatures
:
public
FeaturesReporter
{
36
public
:
37
ChargeChargeFeatures
();
38
39
ChargeChargeFeatures
(
core::Length
distance_cutoff
);
40
41
ChargeChargeFeatures
(
ChargeChargeFeatures
const
& src);
42
43
virtual
~ChargeChargeFeatures
(){}
44
45
core::Length
46
distance_cutoff
()
const
{
return
distance_cutoff_
; }
47
48
void
49
distance_cutoff
(
core::Length
d) {
distance_cutoff_
= d; }
50
51
///@brief return string with class name
52
std::string
53
type_name
()
const
;
54
55
///@brief generate the table schemas and write them to the database
56
virtual
void
57
write_schema_to_db
(utility::sql_database::sessionOP db_session)
const
;
58
59
///@brief return the set of features reporters that are required to
60
///also already be extracted by the time this one is used.
61
utility::vector1<std::string>
62
features_reporter_dependencies
()
const
;
63
64
///@brief collect all the feature data for the pose
65
core::Size
66
report_features
(
67
core::pose::Pose
const
& pose,
68
utility::vector1< bool >
const
&,
69
boost::uuids::uuid struct_id,
70
utility::sql_database::sessionOP db_session);
71
72
private
:
73
74
core::Length
distance_cutoff_
;
75
76
};
77
78
79
}
// features namespace
80
}
// protocols namespace
81
82
#endif // include guard
Generated on Sat Jun 1 2013 11:48:57 for Rosetta 3.5 by
1.8.4