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
simple_moves
AddCavitiesMover.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/simple_moves/AddCavitiesMover.hh
11
///
12
/// @brief
13
/// @author
14
15
16
#ifndef INCLUDED_protocols_simple_moves_AddCavitiesMover_hh
17
#define INCLUDED_protocols_simple_moves_AddCavitiesMover_hh
18
19
#include <
core/scoring/packstat/types.hh
>
20
#include <
core/scoring/packstat/CavityBall.hh
>
21
#include <
core/scoring/packstat/compute_sasa.hh
>
22
23
#include <
protocols/moves/Mover.hh
>
24
25
// AUTO-REMOVED #include <core/conformation/Residue.hh>
26
27
#include <
core/conformation/Residue.fwd.hh
>
28
#include <utility/vector1.hh>
29
30
31
32
namespace
protocols {
33
namespace
simple_moves {
34
35
36
class
AddCavitiesMover
:
public
protocols::moves::Mover
{
37
public
:
38
39
AddCavitiesMover
(
40
core::Size
max_cav = 100,
41
core::Real
min_size = 1.2,
42
core::Size
min_nb = 150,
43
core::Real
min_sep = 3.0
44
);
45
46
void
47
clear_suckers
(
48
core::pose::Pose
& pose
49
);
50
51
void
52
add_suckers
(
53
core::pose::Pose
& pose
54
);
55
56
virtual
57
void
58
apply
(
59
core::pose::Pose
& pose
60
);
61
virtual
std::string
get_name
()
const
;
62
63
protected
:
64
65
core::id::AtomID
66
get_closest_heavy_atom
(
67
core::pose::Pose
& pose,
68
numeric::xyzVector<core::Real>
xyz
69
);
70
71
core::conformation::ResidueOP
72
get_suck_res
();
73
74
core::scoring::packstat::CavBalls
75
get_cavities
(
76
core::pose::Pose
& pose,
77
core::Real
nbdis,
78
int
nbcount,
79
core::Real
minsep
80
);
81
82
core::Size
max_cav_
;
83
core::Real
min_size_
;
84
core::Size
min_nb_
;
85
core::Real
min_sep_
;
86
core::scoring::packstat::SasaOptions
opts
;
87
88
};
89
90
91
92
93
}
// end namespace simple_moves
94
}
// end namespace protocols
95
96
#endif
Generated on Sat Jun 1 2013 12:14:52 for Rosetta 3.5 by
1.8.4