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
core
scoring
methods
VDW_Energy.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 core/scoring/methods/VDW_Energy.hh
11
/// @brief Statistically derived rotamer pair potential class declaration
12
/// @author Phil Bradley
13
14
15
#ifndef INCLUDED_core_scoring_methods_VDW_Energy_hh
16
#define INCLUDED_core_scoring_methods_VDW_Energy_hh
17
18
// Unit Headers
19
#include <
core/scoring/methods/VDW_Energy.fwd.hh
>
20
21
// Package headers
22
#include <
core/scoring/methods/ContextIndependentTwoBodyEnergy.hh
>
23
#include <
core/scoring/methods/EnergyMethodOptions.fwd.hh
>
24
#include <
core/scoring/AtomVDW.fwd.hh
>
25
#include <
core/scoring/ScoreFunction.fwd.hh
>
26
27
28
// Project headers
29
#include <
core/pose/Pose.fwd.hh
>
30
31
#include <utility/vector1.hh>
32
33
34
// Utility headers
35
36
37
namespace
core {
38
namespace
scoring {
39
namespace
methods {
40
41
///
42
class
VDW_Energy
:
public
ContextIndependentTwoBodyEnergy
{
43
public
:
44
typedef
ContextIndependentTwoBodyEnergy
parent
;
45
public
:
46
47
/// @brief C-tor, requires options to tell us the atom_type_set_name for the AtomVDW data
48
VDW_Energy
(
EnergyMethodOptions
const
& options );
49
50
51
/// clone
52
virtual
53
EnergyMethodOP
54
clone
()
const
;
55
56
/// @brief COPY C-TOR
57
VDW_Energy
(
VDW_Energy
const
& src );
58
59
60
/////////////////////////////////////////////////////////////////////////////
61
// scoring
62
/////////////////////////////////////////////////////////////////////////////
63
64
virtual
65
void
66
setup_for_scoring
(
pose::Pose
& pose,
ScoreFunction
const
& )
const
;
67
68
virtual
69
void
70
setup_for_derivatives
(
pose::Pose
& pose,
ScoreFunction
const
& )
const
;
71
72
virtual
73
void
74
residue_pair_energy
(
75
conformation::Residue
const
& rsd1,
76
conformation::Residue
const
& rsd2,
77
pose::Pose
const
& pose,
78
ScoreFunction
const
&,
79
EnergyMap
& emap
80
)
const
;
81
82
83
virtual
84
void
85
eval_intrares_energy
(
86
conformation::Residue
const
&,
87
pose::Pose
const
&,
88
ScoreFunction
const
&,
89
EnergyMap
&
90
)
const
{}
91
92
93
virtual
94
void
95
eval_atom_derivative
(
96
id::AtomID
const
& atom_id,
97
pose::Pose
const
& pose,
98
kinematics::DomainMap
const
& domain_map,
99
ScoreFunction
const
& scorefxn,
100
EnergyMap
const
& weights,
101
Vector
& F1,
102
Vector
& F2
103
)
const
;
104
105
// virtual
106
// void
107
// eval_atom_derivative(
108
// id::AtomID const & atom_id,
109
// pose::Pose const & pose,
110
// ScoreFunction const &,
111
// EnergyMap const & weights,
112
// Vector & F1,
113
// Vector & F2
114
// ) const;
115
116
virtual
117
bool
118
defines_intrares_energy
(
EnergyMap
const
&
/*weights*/
)
const
{
return
false
; }
119
120
virtual
121
Distance
122
atomic_interaction_cutoff
()
const
;
123
124
virtual
125
void
indicate_required_context_graphs
(
utility::vector1< bool >
& context_graphs_required )
const
;
126
127
/////////////////////////////////////////////////////////////////////////////
128
// data
129
/////////////////////////////////////////////////////////////////////////////
130
131
private
:
132
133
// const-ref to scoring database
134
AtomVDW
const
&
atom_vdw_
;
135
136
std::string
const
atom_type_set_name_
;
137
138
Real
const
vdw_scale_factor_
;
139
virtual
140
core::Size
version
()
const
;
141
};
142
143
144
}
145
}
146
}
147
148
#endif // INCLUDED_core_scoring_ScoreFunction_HH
Generated on Sat Jun 1 2013 11:39:16 for Rosetta 3.5 by
1.8.4