Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetAtomTree.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/SetAtomTree.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_SetAtomTree_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_SetAtomTree_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>
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 user-defined atom tree
34 {
35 public :
36  SetAtomTree();
37  /// Commenting out to fix PyRosetta build SetAtomTree( core::kinematics::FoldTreeOP ft );
38  virtual ~SetAtomTree();
39  /// Commenting out to fix PyRosetta build void fold_tree( core::kinematics::FoldTreeOP ft );
40  /// Commenting out to fix PyRosetta build core::kinematics::FoldTreeOP fold_tree() const;
41  void apply( core::pose::Pose & pose );
42  virtual std::string get_name() const;
46  core::kinematics::FoldTreeOP create_atom_tree( core::pose::Pose const & pose, core::Size const host_chain, core::Size const resnum, core::Size const anchor_num_ = 0, std::string const connect_to = "", std::string connect_from = "" );//if connect_to or connect_from = "" optimal_connection_point is invoked
47  bool simple_ft() const {return simple_ft_; }
48  void simple_ft( bool const s ){ simple_ft_ = s; }
49  void two_parts_chain1( bool const t ){ two_parts_chain1_ = t; }
50  bool two_parts_chain1() const{ return two_parts_chain1_; }
51 private :
52  bool docking_ft_, simple_ft_, two_parts_chain1_; //dflt false; false; false; two-parts-chain1 is intended for cases where chain1 has a cut and we want to optimize the jump between part1 and part2 along with the jump between chain1 and chain2
53  core::Size jump_; //dflt true
56 };
57 
58 } // movers
59 } // protein_interface_design
60 } // protocols
61 
62 
63 #endif /*INCLUDED_protocols_protein_interface_design_movers_SetAtomTree_HH*/