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
ReferenceEnergyNoncanonical.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/ReferenceEnergyNoncanonical.hh
11
/// @brief Reference energy method declaration
12
/// @author Fang-Chieh Chou (fcchou@stanford.edu)
13
14
15
16
#ifndef INCLUDED_core_scoring_methods_ReferenceEnergyNoncanonical_hh
17
#define INCLUDED_core_scoring_methods_ReferenceEnergyNoncanonical_hh
18
19
// Unit headers
20
#include <
core/scoring/methods/ReferenceEnergyNoncanonical.fwd.hh
>
21
22
// Package headers
23
#include <
core/scoring/methods/ContextIndependentOneBodyEnergy.hh
>
24
#include <
core/scoring/ScoreFunction.fwd.hh
>
25
26
// Project headers
27
#include <
core/pose/Pose.fwd.hh
>
28
#include <
core/id/TorsionID.fwd.hh
>
29
#include <
core/id/DOF_ID.fwd.hh
>
30
31
#include <utility/vector1.hh>
32
33
34
35
// Utility headers
36
37
38
namespace
core {
39
namespace
scoring {
40
namespace
methods {
41
42
class
ReferenceEnergyNoncanonical
:
public
ContextIndependentOneBodyEnergy
43
{
44
public
:
45
typedef
ContextIndependentOneBodyEnergy
parent
;
46
47
public
:
48
49
///
50
ReferenceEnergyNoncanonical
();
51
52
///
53
ReferenceEnergyNoncanonical
(
utility::vector1< Real >
const
& weight_list );
54
55
///
56
virtual
~ReferenceEnergyNoncanonical
();
57
58
virtual
59
EnergyMethodOP
60
clone
()
const
;
61
62
/////////////////////////////////////////////////////////////////////////////
63
// methods for ContextIndependentOneBodyEnergies
64
/////////////////////////////////////////////////////////////////////////////
65
66
///
67
virtual
68
void
69
residue_energy
(
70
conformation::Residue
const
& rsd,
71
pose::Pose
const
& pose,
72
EnergyMap
& emap
73
)
const
;
74
75
///
76
virtual
77
Real
78
eval_dof_derivative
(
79
id::DOF_ID
const
& dof_id,
80
id::TorsionID
const
& tor_id,
81
pose::Pose
const
& pose,
82
ScoreFunction
const
& sfxn,
83
EnergyMap
const
& weights
84
)
const
;
85
86
/// @brief DunbrackEnergy is context independent; indicates that no
87
/// context graphs are required
88
virtual
89
void
indicate_required_context_graphs
(
utility::vector1< bool >
& )
const
;
90
91
void
init_res_list
();
92
93
private
:
94
utility::vector1< Real >
weights_
;
95
utility::vector1< std::string >
res_list_
;
96
virtual
97
core::Size
version
()
const
;
98
99
};
100
101
}
// methods
102
}
// scoring
103
}
// core
104
105
106
#endif
Generated on Sat Jun 1 2013 11:38:49 for Rosetta 3.5 by
1.8.4