Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopHashRelaxProtocol.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/LoopHashSampler.hh
11 /// @brief
12 /// @author Mike Tyka
13 
14 
15 
16 #ifndef INCLUDED_protocols_loophash_LoopHashRelaxProtocol_hh
17 #define INCLUDED_protocols_loophash_LoopHashRelaxProtocol_hh
18 
22 #include <protocols/moves/Mover.hh>
23 
24 #include <core/types.hh>
25 #include <core/pose/Pose.fwd.hh>
28 #include <utility/pointer/ReferenceCount.hh>
29 #include <string>
30 #include <vector>
31 
32 #include <utility/vector1.hh>
33 
34 
35 
36 namespace protocols {
37 namespace loophash {
38 
42 
43 
45 public:
46 
48  LoopHashLibraryOP library
49  );
50 
51  virtual void apply( core::pose::Pose& pose );
52 
53  void manual_call( core::pose::Pose& pose );
54 
55  virtual protocols::moves::MoverOP clone() const;
56 
57  virtual std::string get_name() const {
58  return "LoopHashRelaxProtocol";
59  }
60 
62 
63 private:
65 
66 };
67 
68 }
69 }
70 
71 #endif