Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SeedSetupMover.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/seeded_abinitio/SeedSetupMover
11 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_seeded_abinitio_SeedSetupMover_hh
14 #define INCLUDED_protocols_seeded_abinitio_SeedSetupMover_hh
15 
16 #include <core/types.hh>
17 #include <utility/tag/Tag.fwd.hh>
19 #include <protocols/moves/Mover.hh>
25 #include <utility/vector1.hh>
27 #include <protocols/loops/Loops.hh>
28 
29 
30 
31 namespace protocols {
32 namespace seeded_abinitio {
33 
35  public:
37  virtual ~SeedSetupMover();
38  void apply( core::pose::Pose & pose );
39 
40  virtual std::string get_name() const;
41  virtual protocols::moves::MoverOP clone() const;
43 
44  void parse_my_tag( utility::tag::TagPtr const tag,
48  core::pose::Pose const & );
49 
50  void clear_task_factory();
52 
54 
55  private:
57  core::pose::Pose & pose ,
59  utility::vector1< core::Size > & designable_residues,
60  utility::vector1< core::Size > & norepack_res,
62 
63  /// this taskfactory contains all the information about which residues should be repacked and designed
64  /// it assumes the fold pose is the last chain. Seeds are parse at runtime and incorporated into this taskfactory
67 
68  /// movemap
70 
71  /// switches for folding and desing behavior:
77 
78  //seeds
80 
81  ///designable residues
83 
84  ///dont repack residues
86 
87  //seed info
89 
90  /// in case someone wanted to instantly design, but really this is only for debugging purposes in there
93  bool design_;
94 
95  /// let chi angles of chain 1 move
97  /// let chi angles of chain 2 move
99 
100  ///interface chi angles be movable
104  /// set helper taskfactory
105  bool packtask_;
106 };
107 
108 }//end seeded_abinitio
109 }//end protocols
110 
111 #endif