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
SwitchChainOrderMover.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 SwitchChainOrderMover.hh
11
/// @brief switch the chain order
12
13
#ifndef INCLUDED_protocols_simple_moves_SwitchChainOrderMover_hh
14
#define INCLUDED_protocols_simple_moves_SwitchChainOrderMover_hh
15
16
#include <
protocols/simple_moves/SwitchChainOrderMover.fwd.hh
>
17
#include <
protocols/moves/Mover.hh
>
18
#include <
protocols/moves/DataMapObj.hh
>
19
20
#include <
protocols/moves/DataMap.fwd.hh
>
21
#include <
protocols/filters/Filter.fwd.hh
>
22
#include <
core/pose/Pose.fwd.hh
>
23
#include <
core/scoring/ScoreFunction.fwd.hh
>
24
25
// C++ Headers
26
#include <string>
27
28
#include <utility/vector1.hh>
29
30
31
namespace
protocols {
32
namespace
simple_moves {
33
34
class
SwitchChainOrderMover
:
public
moves::Mover
{
35
public
:
36
SwitchChainOrderMover
();
37
// Undefinded, commenting out to fix PyRosetta build SwitchChainOrderMover( std::string const & );
38
39
virtual
void
apply
(
core::pose::Pose
& pose );
40
virtual
std::string
get_name
()
const
;
41
42
virtual
moves::MoverOP
clone
()
const
;
43
virtual
moves::MoverOP
fresh_instance
()
const
;
44
45
void
chain_order
(
std::string
const
co
);
46
std::string
chain_order
()
const
;
47
48
virtual
void
parse_my_tag
(
49
utility::tag::TagPtr
const
tag,
50
protocols::moves::DataMap
& data,
51
protocols::filters::Filters_map
const
& filters,
52
protocols::moves::Movers_map
const
& movers,
53
core::pose::Pose
const
& pose );
54
55
core::scoring::ScoreFunctionOP
scorefxn
()
const
;
56
void
scorefxn
(
core::scoring::ScoreFunctionOP
s );
57
private
:
58
std::string
chain_order_
;
59
utility::pointer::owning_ptr< protocols::moves::DataMapObj< utility::vector1< core::Size >
> >
residue_numbers_
;
/// dflt NULL; a vector of residue numbers placed on the DataMap which need to be changed due to the chain order switch
60
core::scoring::ScoreFunctionOP
scorefxn_
;
// dflt NULL; needed to score the pose for the energy graph to behave well
61
};
62
63
64
}
// simple_moves
65
}
// protocols
66
67
#endif
Generated on Sat Jun 1 2013 12:17:40 for Rosetta 3.5 by
1.8.4