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
comparative_modeling
StealLigandMover.cc
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
/// @brief
11
/// @author James Thompson
12
13
#include <
core/types.hh
>
14
15
// AUTO-REMOVED #include <core/pose/Pose.hh>
16
#include <
core/id/NamedAtomID.hh
>
17
18
// AUTO-REMOVED #include <utility/vector1.hh>
19
20
#include <
protocols/comparative_modeling/util.hh
>
21
#include <
protocols/comparative_modeling/StealLigandMover.hh
>
22
23
#include <utility/vector1.hh>
24
25
26
27
namespace
protocols {
28
namespace
comparative_modeling {
29
30
StealLigandMover::StealLigandMover
(
31
core::pose::Pose
const
& source,
32
core::id::NamedAtomID
const
anchor_atom_dest,
33
core::id::NamedAtomID
const
anchor_atom_source,
34
utility::vector1< core::id::NamedAtomID >
const
ligand_indices
35
) :
36
source_( source ),
37
anchor_atom_dest_( anchor_atom_dest ),
38
anchor_atom_source_( anchor_atom_source ),
39
ligand_indices_( ligand_indices )
40
{}
41
42
void
StealLigandMover::apply
(
core::pose::Pose
& pose ) {
43
steal_ligands
(
44
pose,
45
source_
,
46
anchor_atom_dest_
,
47
anchor_atom_source_
,
48
ligand_indices_
49
);
50
}
// apply
51
52
std::string
53
StealLigandMover::get_name
()
const
{
54
return
"StealLigandMover"
;
55
}
56
57
58
}
// comparative_modeling
59
}
// protocols
Generated on Sat Jun 1 2013 11:45:37 for Rosetta 3.5 by
1.8.4