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
interface
DDPlookup.hh
Go to the documentation of this file.
1
// (c) Copyright Rosetta Commons Member Institutions.
2
// (c) This file is part of the Rosetta software suite and is made available under license.
3
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
4
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
5
// (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
6
7
/// @file src/core/scoring/Interface/DDPlookup.hh
8
/// @author Hermann Zellner (hermann1.zellner@biologie.uni-regensburg.de)
9
10
#ifndef INCLUDED_core_scoring_interface_DDPlookup_hh
11
#define INCLUDED_core_scoring_interface_DDPlookup_hh
12
13
// Unit headers
14
#include <
core/scoring/interface/DDPlookup.fwd.hh
>
15
16
// Package headers
17
#include <
core/chemical/AA.hh
>
18
#include <
core/types.hh
>
19
20
// Numeric headers
21
#include <numeric/interpolation/spline/SplineGenerator.hh>
22
23
// Utility headers
24
#include <utility/vector1.hh>
25
#include <utility/pointer/ReferenceCount.hh>
26
27
28
29
namespace
core {
30
namespace
scoring {
31
namespace
interface {
32
33
class
DDPlookup
:
public
utility::pointer::ReferenceCount
{
34
public
:
35
DDPlookup
(
std::string
filename
);
36
37
core::Real
38
get_potentials
(
39
const
core::chemical::AA
& aa1,
const
core::chemical::AA
& aa2,
core::Real
distance
40
)
const
;
41
42
private
:
43
numeric::interpolation::spline::SplineGenerator***
lookup_table_
;
44
utility::vector1< utility::vector1< core::Real >
>
left_
;
45
utility::vector1< utility::vector1< core::Real >
>
right_
;
46
};
47
48
49
}
//Interface
50
}
//scoring
51
}
//core
52
53
#endif
/* INCLUDED_core_scoring_Interface_DDPLOOKUP_HH_ */
54
Generated on Sat Jun 1 2013 11:37:21 for Rosetta 3.5 by
1.8.4