Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AddChainBreak.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/AddChainBreak.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu), Eva-Maria Strauch (evas01@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_AddChainBreak_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_AddChainBreak_hh
15 
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 // AUTO-REMOVED #include <core/kinematics/FoldTree.fwd.hh>
23 // AUTO-REMOVED #include <core/conformation/Residue.fwd.hh>
24 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace protein_interface_design {
30 namespace movers {
31 
32 /// @brief a mover that sets a chainbreak in a specified position
34 {
35 public :
36  AddChainBreak();
37  virtual ~AddChainBreak();
38  void apply( core::pose::Pose & pose );
39  virtual std::string get_name() const;
43  void resnum( std::string const r ){ resnum_=r; }
44  std::string resnum() const{ return resnum_;}
45  void change_foldtree( bool const c ){ change_foldtree_ = c; }
46  bool change_foldtree() const{ return change_foldtree_; }
47  bool find_automatically() const{ return find_automatically_; }
48  void find_automatically( bool const b ){ find_automatically_ = b; }
51 private :
53  bool change_foldtree_; //dflt true; should we add a jump around the chainbreak?
54  bool find_automatically_; // dflt false; allow the mover to decide where the cutpoint is based on the distance between subsequent C and N atoms?
55  core::Real automatic_distance_cutoff_; //dflt 2.5; very large (probably 1.5 is enough), but this a very primitive method for finding breaks!
56 };
57 
58 } // movers
59 } // protein_interface_design
60 } // protocols
61 
62 
63 #endif /*INCLUDED_protocols_protein_interface_design_movers_AddChainBreak_HH*/