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
flexpack
FlexPacker.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/flexpack/
11
/// @brief
12
/// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13
14
#ifndef INCLUDED_protocols_flexpack_FlexPacker_hh
15
#define INCLUDED_protocols_flexpack_FlexPacker_hh
16
17
// Unit Headers
18
#include <
protocols/flexpack/FlexPacker.fwd.hh
>
19
20
#include <
protocols/moves/Mover.hh
>
21
22
// Project headers
23
#include <
core/fragment/Frame.fwd.hh
>
24
#include <
core/pack/task/TaskFactory.fwd.hh
>
25
#include <
core/pack/task/PackerTask.fwd.hh
>
26
#include <
core/scoring/ScoreFunction.fwd.hh
>
27
28
/// Utility headers
29
// AUTO-REMOVED #include <utility/vector1.hh>
30
31
#include <utility/vector1.hh>
32
33
34
namespace
protocols {
35
namespace
flexpack {
36
37
class
FlexPacker
:
public
moves::Mover
38
{
39
public
:
40
//FlexPacker();
41
42
43
FlexPacker
(
44
core::pack::task::PackerTaskCOP
task,
45
utility::vector1< core::fragment::FrameOP >
const
& frames,
46
core::scoring::ScoreFunctionCOP
scorefxn
47
);
48
49
50
virtual
~FlexPacker
();
51
52
virtual
53
void
54
apply
(
core::pose::Pose
& pose );
55
56
virtual
std::string
get_name
()
const
;
57
58
void
59
set_sfxn
(
core::scoring::ScoreFunctionCOP
sfxn );
60
61
void
62
set_task
(
core::pack::task::PackerTaskCOP
task );
63
64
void
65
set_frames
(
utility::vector1< core::fragment::FrameOP >
const
& frames );
66
67
void
68
set_task_factory
(
core::pack::task::TaskFactoryOP
factory );
69
70
private
:
71
72
utility::vector1< core::fragment::FrameCOP >
frames_
;
73
74
core::pack::task::TaskFactoryOP
factory_
;
75
76
core::pack::task::PackerTaskCOP
task_
;
77
core::scoring::ScoreFunctionCOP
scorefxn_
;
78
79
};
80
81
}
82
}
83
84
#endif
Generated on Sat Jun 1 2013 11:50:20 for Rosetta 3.5 by
1.8.4