Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MakePolyXMover.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/MakePolyXMover.hh
11 /// @brief header file of MakePolyXMover.cc
12 /// @author Nobuyasu Koga ( nobuyasau@uw.edu )
13 
14 #ifndef INCLUDED_protocols_simple_moves_MakePolyXMover_HH
15 #define INCLUDED_protocols_simple_moves_MakePolyXMover_HH
16 
17 // Project headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <protocols/moves/Mover.hh>
21 
25 #include <utility/tag/Tag.fwd.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace protocols {
31 namespace simple_moves {
32 
33 
35 public:
36 
42 
43 public:
44 
45 
46  // @brief default constructor
48 
49  // @brief value constructor
50  MakePolyXMover( std::string aa, bool keep_pro, bool keep_gly, bool keep_disulfide_cys );
51 
52  // @brief destructor
54 
55  /// @brief clone this object
56  virtual protocols::moves::MoverOP clone() const;
57 
58  /// @brief create this type of object
60 
61  // @brief virtual main operation
62  virtual void apply( core::pose::Pose & pose );
63  virtual std::string get_name() const;
64 
66 
67 
68 private:
69 
70  /// @brief using amino acid for converting pose to poly XXX
72 
73  /// @brief if true, proline, proline are not converted
74  bool keep_pro_;
75 
76  /// @brief if true, proline, glycine are not converted
77  bool keep_gly_;
78 
79  /// @brief if true, proline, cystein are not converted
81 
82 
83 };
84 
85 
86 } // simple_moves
87 } // protocols
88 
89 
90 #endif //INCLUDED_protocols_simple_moves_MakePolyXMover_HH