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
loophash
Mover_LoopHashRefine.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/loophash/Mover_LoopHashRefine.hh
11
/// @brief
12
/// @author Mike Tyka
13
14
15
16
#ifndef INCLUDED_protocols_loophash_Mover_LoopHashRefine_hh
17
#define INCLUDED_protocols_loophash_Mover_LoopHashRefine_hh
18
19
20
// libRosetta headers
21
// AUTO-REMOVED #include <protocols/jd2/JobDistributor.hh>
22
23
#include <
protocols/moves/Mover.hh
>
24
#include <
protocols/loophash/LoopHashLibrary.fwd.hh
>
25
#include <
protocols/loophash/LoopHashLibrary.hh
>
26
#include <
protocols/loophash/LoopHashMap.hh
>
27
// AUTO-REMOVED #include <protocols/loophash/LoopHashSampler.hh>
28
// AUTO-REMOVED #include <protocols/loophash/LocalInserter.hh>
29
#include <
protocols/loophash/BackboneDB.hh
>
30
#include <
protocols/checkpoint/CheckPointer.hh
>
31
32
#include <
core/kinematics/Jump.hh
>
33
#include <utility/vector1.hh>
34
35
//Auto Headers
36
37
namespace
protocols {
38
namespace
loophash {
39
40
class
Mover_LoopHashRefine
;
41
typedef
utility::pointer::owning_ptr< Mover_LoopHashRefine >
Mover_LoopHashRefineOP
;
42
typedef
utility::pointer::owning_ptr< Mover_LoopHashRefine const >
Mover_LoopHashRefineCOP
;
43
44
class
Mover_LoopHashRefine
:
public
protocols::moves::Mover
{
45
public
:
46
47
Mover_LoopHashRefine
(
48
protocols::loophash::LoopHashLibraryOP
library
49
):
50
library_
(library),
51
checkpoints_
(
"LoopHash"
)
52
{
53
}
54
55
virtual
void
apply
(
core::pose::Pose
& pose );
56
57
virtual
protocols::moves::MoverOP
clone
()
const
{
58
return
new
Mover_LoopHashRefine
( *
this
);
59
}
60
61
62
virtual
std::string
get_name
()
const
{
63
return
"Mover_LoopHashRefine"
;
64
}
65
66
virtual
protocols::moves::MoverOP
fresh_instance
()
const
{
67
return
new
Mover_LoopHashRefine
(
library_
);
68
}
69
70
private
:
71
protocols::loophash::LoopHashLibraryOP
library_
;
72
protocols::checkpoint::CheckPointer
checkpoints_
;
73
74
};
75
76
77
int
loophash_main
();
78
79
80
}
81
}
82
83
#endif
Generated on Sat Jun 1 2013 11:57:17 for Rosetta 3.5 by
1.8.4