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
protocols
match
upstream
ProteinSCSampler.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
// :noTabs=false:tabSize=4:indentSize=4:
4
//
5
// (c) Copyright Rosetta Commons Member Institutions.
6
// (c) This file is part of the Rosetta software suite and is made available under license.
7
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9
// (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10
11
/// @file protocols/match/upstream/ProteinSCSampler.hh
12
/// @brief Class declarations for base class and simple derived class for SC sampling
13
/// @author Alex Zanghellini (zanghell@u.washington.edu)
14
/// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
15
16
#ifndef INCLUDED_protocols_match_upstream_ProteinSCSampler_hh
17
#define INCLUDED_protocols_match_upstream_ProteinSCSampler_hh
18
19
// Unit headers
20
#include <
protocols/match/upstream/ProteinSCSampler.fwd.hh
>
21
22
// Package headers
23
#include <
protocols/match/upstream/ScaffoldBuildPoint.fwd.hh
>
24
25
// Project headers
26
#include <
core/chemical/ResidueType.fwd.hh
>
27
// AUTO-REMOVED #include <core/pack/dunbrack/DunbrackRotamer.hh>
28
29
// Utility headers
30
#include <utility/pointer/ReferenceCount.hh>
31
32
#include <
core/pack/dunbrack/DunbrackRotamer.fwd.hh
>
33
34
35
namespace
protocols {
36
namespace
match
{
37
namespace
upstream {
38
39
class
ProteinSCSampler
:
public
utility::pointer::ReferenceCount
{
40
public
:
41
typedef
core::pack::dunbrack::DunbrackRotamerSampleData
DunbrackRotamerSampleData
;
42
typedef
utility::vector1< DunbrackRotamerSampleData >
DunbrackRotamerSampleDataVector
;
43
44
public
:
45
virtual
~ProteinSCSampler
();
46
47
virtual
48
DunbrackRotamerSampleDataVector
49
samples
(
50
ScaffoldBuildPoint
const
& bb_conf,
51
core::chemical::ResidueType
const
& restype
52
)
const
= 0;
53
54
};
55
56
/// @brief Basic class for sidechain sampling that pulls data from the
57
/// Dunbrack rotamer library. The samples that are returned are the basic
58
/// rotamers and do not include any expansions by the "ex" flags.
59
class
DunbrackSCSampler
:
public
ProteinSCSampler
{
60
61
public
:
62
virtual
63
DunbrackRotamerSampleDataVector
64
samples
(
65
ScaffoldBuildPoint
const
& bb_conf,
66
core::chemical::ResidueType
const
& restype
67
)
const
;
68
69
};
70
71
}
72
}
73
}
74
75
#endif
Generated on Sat Jun 1 2013 11:59:49 for Rosetta 3.5 by
1.8.4