Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Mover_LoopHashRefine.hh
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/loophash/Mover_LoopHashRefine.hh
11 /// @brief
12 /// @author Mike Tyka
13 
14 
15 
16 #ifndef INCLUDED_protocols_loophash_Mover_LoopHashRefine_hh
17 #define INCLUDED_protocols_loophash_Mover_LoopHashRefine_hh
18 
19 
20 // libRosetta headers
21 // AUTO-REMOVED #include <protocols/jd2/JobDistributor.hh>
22 
23 #include <protocols/moves/Mover.hh>
27 // AUTO-REMOVED #include <protocols/loophash/LoopHashSampler.hh>
28 // AUTO-REMOVED #include <protocols/loophash/LocalInserter.hh>
31 
32 #include <core/kinematics/Jump.hh>
33 #include <utility/vector1.hh>
34 
35 //Auto Headers
36 
37 namespace protocols {
38 namespace loophash {
39 
43 
45 public:
46 
49  ):
50  library_(library),
51  checkpoints_("LoopHash")
52  {
53  }
54 
55  virtual void apply( core::pose::Pose& pose );
56 
57  virtual protocols::moves::MoverOP clone() const {
58  return new Mover_LoopHashRefine( *this );
59  }
60 
61 
62  virtual std::string get_name() const {
63  return "Mover_LoopHashRefine";
64  }
65 
67  return new Mover_LoopHashRefine( library_ );
68  }
69 
70 private:
73 
74 };
75 
76 
77 int loophash_main();
78 
79 
80 }
81 }
82 
83 #endif