Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymFoldandDockMoveRbJumpMover.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file MinMover.cc
10 /// @brief
11 /// @author Ingemar Andre
12 
13 // Unit headers
16 // AUTO-REMOVED #include <protocols/moves/RigidBodyMover.hh>
17 // AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
18 // AUTO-REMOVED #include <core/scoring/ScoreFunctionFactory.hh>
19 // AUTO-REMOVED #include <protocols/moves/MonteCarlo.hh>
20 
21 // Package headers
23 // AUTO-REMOVED #include <core/conformation/symmetry/util.hh>
24 
25 
26 // options
27 // AUTO-REMOVED #include <basic/options/option.hh>
28 // AUTO-REMOVED #include <basic/options/keys/fold_and_dock.OptionKeys.gen.hh>
29 
30 // ObjexxFCL Headers
31 
32 // C++ Headers
33 
34 // Utility Headers
35 #include <basic/Tracer.hh>
36 
37 #include <utility/vector1.hh>
38 
39 
40 namespace protocols {
41 namespace symmetric_docking {
42 
43 static basic::Tracer TR("protocols.moves.symmetry.SymFoldandDockMoveRbJumpMover");
44 
45 
47  : Mover("SymFoldandDockMoveRbJumpMover")
48 {}
49 
50 void
52 {
53  using namespace core::conformation::symmetry;
54 
56  setup.apply( pose );
58 }
59 
62  return "SymFoldandDockMoveRbJumpMover";
63 }
64 
65 } // symmetric_docking
66 } // protocols