Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetChiMover.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/sidechain_moves/SetChiMover.hh
11 /// @brief A mover to change one chi angle
12 /// @author Noah Ollikanen
13 
14 #ifndef INCLUDED_protocols_simple_moves_sidechain_moves_SetChiMover_hh
15 #define INCLUDED_protocols_simple_moves_sidechain_moves_SetChiMover_hh
16 
18 #include <protocols/moves/Mover.hh>
19 
20 // Project Headers
21 #include <core/pose/Pose.fwd.hh>
22 #include <core/types.hh>
23 
24 //parsing
25 #include <utility/tag/Tag.fwd.hh>
27 #include <protocols/moves/Mover.fwd.hh> //Movers_map
28 #include <protocols/filters/Filter.fwd.hh> //Filters_map
29 
30 namespace protocols {
31 namespace simple_moves {
32 namespace sidechain_moves {
33 
34 /// @brief A mover to change one chi angle
36 {
37 private:
39 public:
40  ///@brief default ctor
41  SetChiMover();
42  virtual ~SetChiMover();
43 
44  virtual void apply( core::pose::Pose & pose );
45  virtual std::string get_name() const;
46  virtual protocols::moves::MoverOP clone() const {
48  }
51  }
52 
53  void parse_my_tag( utility::tag::TagPtr const tag,
57  core::pose::Pose const & );
58  core::Real angle() const { return angle_; }
59  core::Size resnum() const { return resnum_; }
60  core::Size chinum() const { return chinum_; }
61  void angle( core::Real const a ){ angle_ = a; }
62  void resnum( core::Size const r ){ resnum_ = r; }
63  void chinum( core::Size const c ){ chinum_ = c; }
64 
65 private:
69 };
70 
71 } // sidechain_moves
72 } // simple_moves
73 } // protocols
74 
75 #endif //INCLUDED_protocols_simple_moves_sidechain_moves_SetChiMover_HH_
76