Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PDBReloadMover.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 /// @file PDBReloadMover.cc
11 ///
12 /// @brief
13 /// @author Javier Castellanos (javiercv@uw.edu)
14 
15 // unit headers
18 
19 // type headers
20 #include <core/types.hh>
21 #include <core/id/types.hh>
22 
23 // project headers
24 #include <protocols/moves/Mover.hh>
25 #include <core/pose/util.hh>
27 
28 // utility header
29 #include <basic/Tracer.hh>
30 #include <utility/vector1.hh>
31 #include <utility/exit.hh>
32 #include <basic/options/keys/OptionKeys.hh>
33 #include <basic/options/option.hh>
34 #include <utility/tag/Tag.hh>
35 
36 #include <sstream>
37 
38 //option key includes
39 #include <basic/options/keys/in.OptionKeys.gen.hh>
40 
41 namespace protocols {
42 namespace simple_moves {
43 
44 static basic::Tracer TR("protocols.simple_moves.PDBReloadMover");
45 
48 {
50 }
51 
54  return new PDBReloadMover;
55 }
56 
59 {
60  return "PDBReload";
61 }
62 
64  protocols::moves::Mover("PDBReloadMover")
65 {}
66 
68 
71 {
72  return new PDBReloadMover( *this );
73 }
74 
77 {
78  return new PDBReloadMover();
79 }
80 
81 void
83  std::ostringstream ss;
84  pose.dump_pdb(ss);
86 }
87 
90  return "PDBReloadMover";
91 }
92 
93 void
95  protocols::moves::DataMap & /*data_map*/,
98  core::pose::Pose const & )
99 {
100 }
101 
102 } // moves
103 } // protocols