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
protein_interface_design
movers
LoopFinder.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/protein_interface_design/movers/LoopFinder.hh
11
/// @brief Header for class to find loops (parseable options to control how loops are found)
12
/// @author Jacob Corn (jecorn@u.washington.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_movers_LoopFinder_hh
15
#define INCLUDED_protocols_protein_interface_design_movers_LoopFinder_hh
16
17
#include <
core/pose/Pose.fwd.hh
>
18
//#include <protocols/moves/Mover.hh>
19
#include <
core/types.hh
>
20
#include <
protocols/loops/Loops.fwd.hh
>
21
// AUTO-REMOVED #include <protocols/loops/Loops.hh>
22
#include <utility/tag/Tag.fwd.hh>
23
// AUTO-REMOVED #include <protocols/loops/util.hh>
24
25
// the following must be included because LoopFinder is derived from DRMover
26
//#include <core/scoring/ScoreFunction.fwd.hh>
27
//#include <core/pose/Pose.fwd.hh>
28
//#include <core/pack/task/PackerTask.fwd.hh>
29
//#include <core/pack/task/TaskFactory.fwd.hh>
30
31
#include <utility/vector1.hh>
32
33
//Auto Headers
34
#include <
protocols/simple_moves/DesignRepackMover.hh
>
35
36
37
namespace
protocols {
38
namespace
protein_interface_design {
39
namespace
movers {
40
41
class
LoopFinder
:
public
simple_moves::DesignRepackMover
42
{
43
public
:
44
LoopFinder
();
45
LoopFinder
(
46
bool
const
interface,
47
bool
const
ch1,
48
bool
const
ch2,
49
core::Size
const
min_length,
50
core::Size
const
max_length,
51
core::Size
const
mingap,
52
core::Size
const
resnum,
53
core::Real
const
ca_ca_distance,
54
core::Real
const
iface_cutoff,
55
protocols::loops::LoopsOP
loops
56
);
57
virtual
~LoopFinder
();
58
59
protocols::moves::MoverOP
clone
()
const
;
60
protocols::moves::MoverOP
fresh_instance
()
const
{
return
protocols::moves::MoverOP
(
new
LoopFinder
); }
61
void
apply
(
core::pose::Pose
& pose );
62
virtual
std::string
get_name
()
const
;
63
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
protocols::moves::DataMap
& data,
protocols::filters::Filters_map
const
&,
protocols::moves::Movers_map
const
&,
core::pose::Pose
const
& );
64
private
:
65
Size
interface_
;
66
bool
ch1_
,
ch2_
;
67
core::Size
min_length_
,
max_length_
,
mingap_
;
68
core::Size
resnum_
;
69
core::Real
ca_ca_distance_
;
70
core::Real
iface_cutoff_
;
71
//protocols::moves::DataMapOP data_;
72
protocols::loops::LoopsOP
loops_
;
73
};
74
75
}
// movers
76
}
// protein_interface_design
77
}
// protocols
78
79
80
#endif
/*INCLUDED_protocols_protein_interface_design_movers_LoopFinder_HH*/
Generated on Sat Jun 1 2013 12:05:15 for Rosetta 3.5 by
1.8.4