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
RotamerDump
RotamerDumpMover.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/RotamerDump/RotamerDumpMover.hh
11
/// @author Sam DeLuca
12
13
#ifndef INCLUDED_protocols_RotamerDump_RotamerDumpMOver_HH
14
#define INCLUDED_protocols_RotamerDump_RotamerDumpMOver_HH
15
16
#include <
protocols/RotamerDump/RotamerDumpMover.fwd.hh
>
17
#include <
core/pack/task/TaskFactory.fwd.hh
>
18
#include <
core/pack/task/PackerTask.fwd.hh
>
19
#include <
core/scoring/ScoreFunction.fwd.hh
>
20
#include <
protocols/moves/Mover.hh
>
21
// AUTO-REMOVED #include <core/pose/Pose.hh>
22
#include <
core/pack/rotamer_set/RotamerSets.fwd.hh
>
23
// AUTO-REMOVED #include <core/pack/interaction_graph/InteractionGraphBase.hh>
24
25
#include <
core/pack/interaction_graph/InteractionGraphBase.fwd.hh
>
26
#include <utility/vector1.hh>
27
28
29
namespace
protocols {
30
namespace
RotamerDump {
31
32
/// @brief a mover for dumping interaction graph information. The information is appended to the current job.
33
class
RotamerDumpMover
:
public
protocols::moves::Mover
34
{
35
public
:
36
37
RotamerDumpMover
(
core::pack::task::TaskFactoryOP
task_factory,
core::scoring::ScoreFunctionOP
score_function);
38
virtual
void
apply
(
core::pose::Pose
& pose);
39
virtual
std::string
get_name
()
const
;
40
41
private
:
42
/// @brief dump the one body energy table
43
std::string
get_onebody_energy_table
(
core::pack::interaction_graph::InteractionGraphBaseOP
ig,
core::pack::rotamer_set::RotamerSetsOP
rotamer_sets);
44
45
/// @brief dump the two body energy table
46
std::string
get_twobody_energy_table
(
core::pack::interaction_graph::InteractionGraphBaseOP
ig,
core::pack::rotamer_set::RotamerSetsOP
rotamer_sets);
47
/// @brief dump the xyz coordinates of every atom in every rotamer
48
std::string
get_xyz_coord_table
(
core::pack::rotamer_set::RotamerSetsOP
rotamer_sets);
49
/// @brief return the interaction nodes selected by the annealer. This function does not modify the pose.
50
std::string
get_annealer_pick_table
(
core::pack::interaction_graph::InteractionGraphBaseOP
ig,
core::pack::rotamer_set::RotamerSetsOP
rotamer_sets,
core::pose::Pose
& pose,
core::pack::task::PackerTaskCOP
task);
51
52
core::pack::task::TaskFactoryOP
task_factory_
;
53
core::scoring::ScoreFunctionOP
score_function_
;
54
55
};
56
57
}
58
}
59
60
#endif
Generated on Sat Jun 1 2013 12:10:23 for Rosetta 3.5 by
1.8.4