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
rna
RNA_BaseBaseEnergy.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/rna/RNA_BaseBaseEnergy.hh
11
/// @brief Statistically derived rotamer pair potential class declaration
12
/// @author Phil Bradley
13
14
15
#ifndef INCLUDED_core_scoring_rna_RNA_BaseBaseEnergy_hh
16
#define INCLUDED_core_scoring_rna_RNA_BaseBaseEnergy_hh
17
18
// Unit Headers
19
#include <
core/scoring/rna/RNA_BaseBaseEnergy.fwd.hh
>
20
21
// Package headers
22
#include <
core/scoring/methods/WholeStructureEnergy.hh
>
23
#include <
core/scoring/rna/RNA_LowResolutionPotential.fwd.hh
>
24
25
// Project headers
26
#include <
core/pose/Pose.fwd.hh
>
27
28
// Utility headers
29
30
31
namespace
core {
32
namespace
scoring {
33
namespace
rna {
34
35
///
36
37
// Note that this could *almost* be a TwoBodyContextIndependentEnergy.
38
// The problem is that for low resolution structures,
39
// the base pair and base stack list needs to be filtered to
40
// disallow a single base edge from forming multiple base pairs, or
41
// for two bases to both pair and stack.
42
//
43
44
45
class
RNA_BaseBaseEnergy
:
public
methods::WholeStructureEnergy
{
46
public
:
47
48
///
49
RNA_BaseBaseEnergy
();
50
51
52
/// clone
53
virtual
54
methods::EnergyMethodOP
55
clone
()
const
;
56
57
/////////////////////////////////////////////////////////////////////////////
58
// scoring
59
/////////////////////////////////////////////////////////////////////////////
60
61
virtual
62
void
63
setup_for_scoring
(
pose::Pose
& pose,
ScoreFunction
const
& )
const
;
64
65
virtual
66
void
67
setup_for_derivatives
(
pose::Pose
& pose,
ScoreFunction
const
& )
const
;
68
69
virtual
70
void
71
finalize_total_energy
(
72
pose::Pose
& pose,
73
ScoreFunction
const
&,
74
EnergyMap
&
// totals
75
)
const
;
76
77
virtual
78
void
79
eval_atom_derivative
(
80
id::AtomID
const
& atom_id,
81
pose::Pose
const
& pose,
82
kinematics::DomainMap
const
&,
83
ScoreFunction
const
&,
84
EnergyMap
const
& weights,
85
Vector
& F1,
86
Vector
& F2 )
const
;
87
88
virtual
89
Distance
90
atomic_interaction_cutoff
()
const
;
91
92
virtual
93
void
indicate_required_context_graphs
(
utility::vector1< bool >
& )
const
{}
94
95
96
// Undefinded, comented out to make python bindings complile
97
//void
98
//figure_out_rna_base_pairs_to_score() const;
99
100
// Undefinded, comented out to make python bindings complile
101
//void
102
//figure_out_rna_base_stacks_to_score() const;
103
104
// Undefinded, comented out to make python bindings complile
105
//void
106
//figure_out_which_interactions_to_score() const;
107
108
109
/////////////////////////////////////////////////////////////////////////////
110
// data
111
/////////////////////////////////////////////////////////////////////////////
112
113
private
:
114
115
// const-ref to scoring database
116
rna::RNA_LowResolutionPotential
const
&
rna_low_resolution_potential_
;
117
118
};
119
120
121
}
122
}
123
}
124
125
#endif // INCLUDED_core_scoring_ScoreFunction_HH
Generated on Sat Jun 1 2013 11:39:55 for Rosetta 3.5 by
1.8.4