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
SmoothEnvEnergy.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/SmoothEnvEnergy.cc
11
/// @brief Smooth, differentiable, version of centroid env
12
/// @author Frank DiMaio
13
14
15
#ifndef INCLUDED_core_scoring_methods_SmoothEnvEnergy_hh
16
#define INCLUDED_core_scoring_methods_SmoothEnvEnergy_hh
17
18
// Unit Headers
19
// AUTO-REMOVED #include <core/scoring/methods/EnvPairEnergy.fwd.hh>
20
21
// Package headers
22
#include <
core/scoring/methods/ContextDependentOneBodyEnergy.hh
>
23
#include <
core/scoring/SmoothEnvPairPotential.fwd.hh
>
24
25
// Project headers
26
#include <
core/pose/Pose.fwd.hh
>
27
#include <
core/scoring/ScoreFunction.fwd.hh
>
28
29
#include <utility/vector1.hh>
30
31
32
// Utility headers
33
34
35
namespace
core {
36
namespace
scoring {
37
namespace
methods {
38
39
///
40
class
SmoothEnvEnergy
:
public
ContextDependentOneBodyEnergy
{
41
public
:
42
typedef
ContextDependentOneBodyEnergy
parent
;
43
public
:
44
45
///
46
SmoothEnvEnergy
();
47
48
49
/// clone
50
virtual
51
EnergyMethodOP
52
clone
()
const
;
53
54
/////////////////////////////////////////////////////////////////////////////
55
// scoring
56
/////////////////////////////////////////////////////////////////////////////
57
58
virtual
59
void
60
setup_for_scoring
(
pose::Pose
& pose,
ScoreFunction
const
& )
const
;
61
62
virtual
63
void
64
residue_energy
(
65
conformation::Residue
const
& rsd,
66
pose::Pose
const
& pose,
67
EnergyMap
& emap
68
)
const
;
69
70
virtual
71
void
72
eval_residue_derivatives
(
73
conformation::Residue
const
& rsd,
74
ResSingleMinimizationData
const
& min_data,
75
pose::Pose
const
& pose,
76
EnergyMap
const
& weights,
77
utility::vector1< DerivVectorPair >
& atom_derivs
78
)
const
;
79
80
virtual
81
void
82
finalize_total_energy
(
83
pose::Pose
& pose,
84
ScoreFunction
const
&,
85
EnergyMap
&
// totals
86
)
const
;
87
88
virtual
89
void
indicate_required_context_graphs
(
utility::vector1< bool >
& )
const
{}
90
91
92
/////////////////////////////////////////////////////////////////////////////
93
// data
94
/////////////////////////////////////////////////////////////////////////////
95
96
private
:
97
98
// const-ref to scoring database
99
SmoothEnvPairPotential
const
&
potential_
;
100
101
virtual
102
core::Size
version
()
const
;
103
104
};
105
106
107
}
108
}
109
}
110
111
#endif // INCLUDED_core_scoring_ScoreFunction_HH
Generated on Sat Jun 1 2013 11:39:11 for Rosetta 3.5 by
1.8.4