Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
22 
23 #include <utility/vector1.hh>
24 
25 
26 
27 namespace protocols {
28 namespace comparative_modeling {
29 
31  core::pose::Pose const & source,
32  core::id::NamedAtomID const anchor_atom_dest,
33  core::id::NamedAtomID const anchor_atom_source,
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 
44  pose,
45  source_,
49  );
50 } // apply
51 
54  return "StealLigandMover";
55 }
56 
57 
58 } // comparative_modeling
59 } // protocols