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
dfire
DFIRE_Potential.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/dfire/DFIRE_Potential.hh
11
/// @brief DFIRE Potential class declaration
12
/// @author James Thompson
13
14
#ifndef INCLUDED_core_scoring_methods_dfire_DFIRE_Potential_HH
15
#define INCLUDED_core_scoring_methods_dfire_DFIRE_Potential_HH
16
17
// core
18
// AUTO-REMOVED #include <core/pose/Pose.hh>
19
// AUTO-REMOVED #include <core/scoring/types.hh>
20
// AUTO-REMOVED #include <core/conformation/Residue.hh>
21
22
// Unit Headers
23
#include <
core/scoring/methods/dfire/DFIRE_Potential.fwd.hh
>
24
#include <utility/pointer/ReferenceCount.hh>
25
#include <boost/unordered_map.hpp>
26
27
// Utility headers
28
// AUTO-REMOVED #include <ObjexxFCL/FArray3D.hh>
29
// AUTO-REMOVED #include <numeric/xyzMatrix.hh>
30
// AUTO-REMOVED #include <numeric/xyzVector.hh>
31
32
#include <
core/types.hh
>
33
#include <
core/conformation/Residue.fwd.hh
>
34
#include <utility/vector1.hh>
35
36
37
namespace
core {
38
namespace
scoring {
39
namespace
methods {
40
namespace
dfire {
41
42
class
DFIRE_Potential
:
public
utility::pointer::ReferenceCount
{
43
public
:
44
DFIRE_Potential
();
45
46
virtual
~DFIRE_Potential
() ;
// auto-removing definition from header{}
47
48
core::Real
49
eval_dfire_pair_energy
(
50
core::conformation::Residue
const
& rsd1,
51
core::conformation::Residue
const
& rsd2
52
)
const
;
53
54
bool
is_loaded
()
const
;
55
56
void
57
read_potential
(
std::string
const
& fn);
58
59
private
:
60
core::Size
res_index
(
std::string
const
& res_name )
const
;
61
core::Size
atom_index
(
std::string
const
& atom_name )
const
;
62
63
bool
potential_is_loaded_
;
64
65
boost::unordered_map< std::string, core::Size >
atom_res_idx_
;
66
utility::vector1< utility::vector1< core::Real >
>
potential_
;
67
};
68
69
DFIRE_Potential
&
get_DFIRE_potential
();
70
71
}
// dfire
72
}
// methods
73
}
// scoring
74
}
// core
75
76
#endif
Generated on Sat Jun 1 2013 11:37:46 for Rosetta 3.5 by
1.8.4