Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopLengthChange.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/protein_interface_design/movers/LoopLengthChange.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_hh
16 #include <core/types.hh>
17 #include <core/pose/Pose.fwd.hh>
18 #include <utility/tag/Tag.fwd.hh>
20 #include <protocols/moves/Mover.hh>
22 
23 #include <utility/vector1.hh>
24 
25 
26 namespace protocols {
27 namespace protein_interface_design {
28 namespace movers {
29 
30 /// @brief designs alanine residues in place of the residue identities at the interface. Retains interface glycines and prolines.
32 {
33 public:
35 public:
37  void apply( Pose & pose );
38  virtual std::string get_name() const;
42  virtual ~LoopLengthChange();
43  void loop_start( core::Size const loop_start );
44  void loop_end( core::Size const loop_end );
45  core::Size loop_start() const;
46  core::Size loop_end() const;
47  void delta( int const d );
48  int delta() const;
49 private:
51  int delta_; // delta_: by how much to change
52 };
53 
54 
55 } // movers
56 } // protein_interface_design
57 } // protocols
58 
59 
60 #endif /*INCLUDED_protocols_protein_interface_design_movers_LoopLengthChange_HH*/