Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PeptideStapleMover.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/simple_moves/PeptideStapleMover.hh
11 /// @brief Definition of classes for placing peptide staples in the pose.
12 /// @author Jacob Corn
13 
14 #ifndef INCLUDED_protocols_simple_moves_PeptideStapleMover_hh
15 #define INCLUDED_protocols_simple_moves_PeptideStapleMover_hh
16 
17 // Unit Headers
19 
20 // Package headers
21 #include <protocols/moves/Mover.hh>
22 
23 // Project headers
24 #include <core/pose/Pose.fwd.hh>
25 
26 #include <utility/vector1.hh>
27 
28 
29 // ObjexxFCL Headers
30 
31 // C++ Headers
32 
33 // Utility Headers
34 
35 namespace protocols {
36 namespace simple_moves {
38 public:
39  PeptideStapleMover( core::Size const staple_start, core::Size const staple_gap );
40 
41 
42  virtual void apply( core::pose::Pose & pose );
43  virtual std::string get_name() const;
44  virtual protocols::moves::MoverOP clone() const {
46  }
47 
48 private:
49  // private variables
52 
53  // private fxns
55  void minimize_( core::pose::Pose & pose );
56 
57  //void build_staple_ ( core::pose::Pose & pose, core::Size const seqpos, core::Size const staple_gap );
58 
59 }; // PeptideStapleMover
60 
61 } // moves
62 } // protocols
63 
64 
65 #endif