Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HelicalPeptideLengthMover.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/HelicalPeptideLengthMover.hh
11 /// @brief Definition of classes for changing the length of a helical peptide that's connected to the rest of the pose by a jump
12 /// @author Jacob Corn
13 
14 #ifndef INCLUDED_protocols_simple_moves_HelicalPeptideLengthMover_hh
15 #define INCLUDED_protocols_simple_moves_HelicalPeptideLengthMover_hh
16 
17 // Unit Headers
20 
21 // Package headers
22 #include <protocols/moves/Mover.hh>
23 
24 // Project headers
25 #include <core/pose/Pose.fwd.hh>
26 
27 // ObjexxFCL Headers
28 
29 // C++ Headers
30 
31 // Utility Headers
32 
33 namespace protocols {
34 namespace simple_moves {
35 
37  append=1,
40 };
41 
42 
44 public:
45  HelicalPeptideLengthMover( core::Size const seqpos, std::string const resname, residue_addition_type const addition_type );
46 
47  virtual void apply( core::pose::Pose & pose );
48  virtual protocols::moves::MoverOP clone() const {
50  }
51 
52 private:
53  // private variables
57 
58  // private fxns
60  void add_residue_( core::pose::Pose & pose, core::Size const seqpos, core::conformation::ResidueCOP residue, residue_addition_type const append_prepend );
61 
62 }; // HelicalPeptideLengthMover
63 
64 } // moves
65 } // protocols
66 
67 
68 #endif