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
pack
rotamer_set
RotamerCouplings.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/pack/rotamer_set/RotamerSet.fwd.hh
11
/// @brief Residue set class forward declarations
12
/// @author Andrew Leaver-Fay (leaverfa@email.unc.edu)
13
14
15
#ifndef INCLUDED_core_pack_rotamer_set_RotamerCouplings_hh
16
#define INCLUDED_core_pack_rotamer_set_RotamerCouplings_hh
17
18
#include <
core/pack/rotamer_set/RotamerCouplings.fwd.hh
>
19
20
#include <
core/conformation/ResidueMatcher.hh
>
21
22
// AUTO-REMOVED #include <utility/vector1.hh>
23
24
// AUTO-REMOVED #include <utility>
25
26
#include <utility/vector1_bool.hh>
27
28
// utility headers
29
30
namespace
core {
31
namespace
pack {
32
namespace
rotamer_set {
33
34
class
RotamerCouplings
:
public
utility::pointer::ReferenceCount
{
35
public
:
36
typedef
conformation::ResidueMatcherCOP
ResidueMatcherCOP
;
37
38
public
:
39
void
40
resize
(
Size
const
size_in )
41
{
42
couplings_
.resize( size_in );
43
}
44
45
std::pair< int, ResidueMatcherCOP >
const
&
46
operator[]
(
Size
const
index )
const
47
{
48
return
couplings_
[ index ];
49
}
50
51
std::pair< int, ResidueMatcherCOP > &
52
operator[]
(
Size
const
index )
53
{
54
return
couplings_
[ index ];
55
}
56
57
private
:
58
59
utility::vector1< std::pair< int, ResidueMatcherCOP >
>
couplings_
;
60
};
61
62
63
}
// namespace rotamer_set
64
}
// namespace pack
65
}
// namespace core
66
67
68
#endif //
Generated on Sat Jun 1 2013 11:33:44 for Rosetta 3.5 by
1.8.4