Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ChiralMover.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/chiral/ChiralMover.hh
11 /// @brief
12 /// @author Kevin Drew, kdrew@nyu.edu
13 #ifndef INCLUDED_protocols_simple_moves_chiral_ChiralMover_hh
14 #define INCLUDED_protocols_simple_moves_chiral_ChiralMover_hh
15 // Unit Headers
17 // Project Headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <protocols/moves/Mover.hh>
21 #include <core/chemical/Patch.hh>
22 
23 #include <map>
24 
25 // Utility Headers
26 //#include <core/types.hh>
27 //#include <utility/vector1.hh>
28 
29 namespace protocols {
30 namespace simple_moves {
31 namespace chiral {
32 
33 enum Chirality {
36  FLIP_CHIRALITY //flip to the other chirality, ie L->D or D->L
37 };
38 
39 
42 
43 ///@details
45 
46 public:
47 
48  ///@brief
49  ChiralMover( core::Size chiral_seq_position );
50  ChiralMover( core::Size chiral_seq_position, Chirality chirality );
51 
52  virtual ~ChiralMover();
53 
54  virtual void apply( core::pose::Pose & pose );
55  virtual std::string get_name() const;
56 
57 private:
58 
61 
62 };//end ChiralMover
63 
64 
65 }//namespace chiral
66 }//namespace simple_moves
67 }//namespace protocols
68 
69 #endif // INCLUDED_protocols_simple_moves_chiral_ChiralMover_hh