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
swa
monte_carlo
RNA_AddOrDeleteMover.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 RNA_AddOrDeleteMover.hh
11
/// @brief
12
/// @detailed
13
///
14
/// @author Rhiju Das
15
16
17
#ifndef INCLUDED_protocols_swa_monte_carlo_RNA_AddOrDeleteMover_hh
18
#define INCLUDED_protocols_swa_monte_carlo_RNA_AddOrDeleteMover_hh
19
20
#include <
core/pose/Pose.fwd.hh
>
21
#include <
core/types.hh
>
22
#include <
protocols/moves/Mover.hh
>
23
#include <
protocols/swa/monte_carlo/types.hh
>
24
#include <
protocols/swa/monte_carlo/RNA_AddMover.fwd.hh
>
25
#include <
protocols/swa/monte_carlo/RNA_DeleteMover.fwd.hh
>
26
#include <
protocols/swa/monte_carlo/RNA_AddOrDeleteMover.fwd.hh
>
27
28
29
namespace
protocols {
30
namespace
swa {
31
namespace
monte_carlo {
32
33
/////////////////////////////////////////////////////////////////////////////////////////////////
34
/////////////////////////////////////////////////////////////////////////////////////////////////
35
class
RNA_AddOrDeleteMover
:
public
protocols::moves::Mover
{
36
public
:
37
38
39
RNA_AddOrDeleteMover
(
RNA_AddMoverOP
rna_add_mover,
40
RNA_DeleteMoverOP
rna_delete_mover );
41
42
//destructor -- necessary? -- YES destructors are necessary.
43
~RNA_AddOrDeleteMover
();
44
using
protocols::moves::Mover::apply
;
45
void
46
apply
(
core::pose::Pose
& pose,
std::string
& move_type );
47
48
/// @brief Apply the minimizer to one pose
49
virtual
void
apply
(
core::pose::Pose
& pose_to_visualize );
50
virtual
std::string
get_name
()
const
;
51
52
void
set_allow_deletion_of_last_residue
(
bool
const
setting ){
allow_deletion_of_last_residue_
= setting; }
53
54
private
:
55
56
RNA_AddMoverOP
rna_add_mover_
;
57
RNA_DeleteMoverOP
rna_delete_mover_
;
58
bool
allow_deletion_of_last_residue_
;
59
60
};
61
62
}
// monte_carlo
63
}
// swa
64
}
// protocols
65
66
#endif
Generated on Sat Jun 1 2013 12:18:58 for Rosetta 3.5 by
1.8.4