Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoadUnboundRotMover.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 protocols/simple_moves/LoadUnboundRotMover.cc
11 /// @brief LoadUnboundRotMover methods implemented
12 /// @author Steven Lewis smlewi@gmail.com, Brian Weitzner brian.weitzner@gmail.com
13 
14 // Unit Headers
17 
18 // Package Headers
20 
21 // Project Headers
22 #include <core/pose/Pose.hh>
23 
24 // Utility Headers
25 #include <basic/Tracer.hh>
26 
27 // C++ Headers
28 
29 static basic::Tracer TR( "protocols.simple_moves.LoadUnboundRotMover" );
30 
31 namespace protocols {
32 namespace simple_moves {
33 
36 {
38 }
39 
42  return new LoadUnboundRotMover;
43 }
44 
47 { //this is the string name that was hardcoded into the Parser at SVN 46190
48  return "load_unbound_rot";
49 }
50 
52  : protocols::moves::Mover("LoadUnboundRotMover")
53 {}
54 
56 
57 ///@details
60  return;
61 }//apply
62 
66 }
67 
70 
71 ///@brief parse XML (specifically in the context of the parser/scripting scheme); it's a no-op
72 void
78  Pose const &
79 )
80 {}
81 
82 }//simple_moves
83 }//protocols
84