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
dna
RotamerDNAHBondFilter.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 protocols/dna/RotamerDNAHBondFilter.hh
11
/// @brief when passed to a PackerTask, filters rotamers for contact to DNA in an -ex dependent manner
12
/// @author ashworth
13
14
#ifndef INCLUDED_protocols_dna_RotamerDNAHBondFilter_hh
15
#define INCLUDED_protocols_dna_RotamerDNAHBondFilter_hh
16
17
// Unit Headers
18
#include <
protocols/dna/RotamerDNAHBondFilter.fwd.hh
>
19
20
// Package Headers
21
#include <
core/pack/rotamer_set/RotamerSet.fwd.hh
>
22
#include <
core/pack/rotamer_set/RotamerSetOperation.hh
>
23
#include <
core/graph/Graph.fwd.hh
>
24
#include <
core/pack/task/PackerTask.fwd.hh
>
25
#include <
core/pose/Pose.fwd.hh
>
26
#include <
core/scoring/ScoreFunction.fwd.hh
>
27
#include <
core/pack/dunbrack/ChiSet.fwd.hh
>
28
#include <
core/scoring/hbonds/HBondDatabase.fwd.hh
>
29
#include <
core/scoring/hbonds/HBondOptions.fwd.hh
>
30
31
#include <utility/vector1.hh>
32
33
34
namespace
protocols {
35
namespace
dna {
36
37
class
RotamerDNAHBondFilter
:
public
core::pack::rotamer_set::RotamerOperation
38
{
39
public
:
40
RotamerDNAHBondFilter
(
41
core::Real
threshold = -0.5,
42
bool
base_only =
true
43
);
44
virtual
~RotamerDNAHBondFilter
();
45
46
virtual
47
bool
48
operator()
(
49
core::conformation::ResidueOP
rotamer,
50
core::pose::Pose
const
& pose,
51
core::scoring::ScoreFunction
const
& scorefxn,
52
core::pack::task::ResidueLevelTask
const
& rtask,
53
core::graph::GraphCOP
packer_neighbor_graph,
54
core::pack::dunbrack::ChiSetOP
chi_set
55
);
56
57
void
report
()
const
;
58
59
private
:
60
core::Real
threshold_
;
61
bool
base_only_
;
62
core::Size
nfiltered_
;
63
core::Size
naccepted_
;
64
core::scoring::hbonds::HBondDatabaseCOP
hb_database_
;
65
core::scoring::hbonds::HBondOptionsOP
hbondoptions_
;
66
67
};
68
69
}
70
}
71
72
#endif
Generated on Sat Jun 1 2013 11:46:37 for Rosetta 3.5 by
1.8.4