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
DistanceChainbreakEnergy.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/EtableEnergy.hh
11
/// @brief Etable energy method class declaration
12
/// @author Phil Bradley
13
/// @author Andrew Leaver-Fay
14
15
#ifndef INCLUDED_core_scoring_methods_DistanceChainbreakEnergy_hh
16
#define INCLUDED_core_scoring_methods_DistanceChainbreakEnergy_hh
17
18
// Unit headers
19
#include <
core/scoring/methods/DistanceChainbreakEnergy.fwd.hh
>
20
21
// Package headers
22
#include <
core/scoring/ScoreFunction.fwd.hh
>
23
#include <
core/scoring/EnergyMap.fwd.hh
>
24
#include <
core/scoring/methods/WholeStructureEnergy.hh
>
25
26
// Project headers
27
#include <
core/pose/Pose.fwd.hh
>
28
29
#include <utility/vector1.hh>
30
31
32
33
//#include <ObjexxFCL/FArray3D.hh>
34
35
namespace
core {
36
namespace
scoring {
37
namespace
methods {
38
39
/// @brief DistanceChainbreakEnergy class iterates across all residues in finalize()
40
/// and determines the penalty between residues i and i+1 by how far apart
41
/// their N and C atom are
42
class
DistanceChainbreakEnergy
:
public
WholeStructureEnergy
{
43
public
:
44
typedef
WholeStructureEnergy
parent
;
45
46
public
:
47
48
DistanceChainbreakEnergy
();
49
50
/// clone
51
virtual
52
EnergyMethodOP
53
clone
()
const
54
{
55
return
new
DistanceChainbreakEnergy
;
56
}
57
58
/// called at the end of energy evaluation
59
virtual
60
void
61
finalize_total_energy
(
62
pose::Pose
& pose,
63
ScoreFunction
const
&,
64
EnergyMap
& totals
65
)
const
;
66
67
virtual
68
void
69
indicate_required_context_graphs
(
utility::vector1< bool >
& )
const
;
70
virtual
71
core::Size
version
()
const
;
72
73
74
};
75
76
}
// methods
77
}
// scoring
78
}
// core
79
80
81
#endif
Generated on Sat Jun 1 2013 11:37:51 for Rosetta 3.5 by
1.8.4