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
RMS_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/RMS_Energy.hh
11
/// @brief RMS Energy function. Used to optimize the RMSD between two structures.
12
/// @author James Thompson
13
14
15
#ifndef INCLUDED_core_scoring_methods_RMS_Energy_hh
16
#define INCLUDED_core_scoring_methods_RMS_Energy_hh
17
18
19
// Package headers
20
#include <
core/scoring/methods/WholeStructureEnergy.hh
>
21
#include <
core/scoring/ScoreType.hh
>
22
#include <
core/scoring/ScoreFunction.fwd.hh
>
23
24
25
// Project headers
26
#include <
core/pose/Pose.hh
>
27
28
#include <utility/vector1.hh>
29
30
31
// Utility headers
32
33
34
namespace
core {
35
namespace
scoring {
36
namespace
methods {
37
38
39
class
RMS_Energy
:
public
WholeStructureEnergy
{
40
public
:
41
typedef
WholeStructureEnergy
parent
;
42
43
public
:
44
45
///
46
RMS_Energy
();
47
48
/// clone
49
virtual
50
EnergyMethodOP
51
clone
()
const
;
52
53
/////////////////////////////////////////////////////////////////////////////
54
// scoring
55
/////////////////////////////////////////////////////////////////////////////
56
57
void
58
finalize_total_energy
(
59
pose::Pose
& pose,
60
ScoreFunction
const
&,
61
EnergyMap
& totals
62
)
const
;
63
64
void
65
indicate_required_context_graphs
(
66
utility::vector1< bool >
&
/*context_graphs_required*/
67
)
const
{}
68
69
private
:
70
pose::Pose
native_pose_
;
71
core::Real
rms_target_
;
72
virtual
73
core::Size
version
()
const
;
74
};
75
76
77
}
// methods
78
}
// scoring
79
}
// core
80
81
#endif
Generated on Sat Jun 1 2013 11:39:05 for Rosetta 3.5 by
1.8.4