Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OopPuckMover.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/oop/OopPuckMover.hh
11 /// @brief
12 /// @author
13 #ifndef INCLUDED_protocols_simple_moves_oop_OopPuckMover_hh
14 #define INCLUDED_protocols_simple_moves_oop_OopPuckMover_hh
15 // Unit Headers
18 // Project Headers
19 #include <core/pose/Pose.fwd.hh>
20 #include <protocols/moves/Mover.hh>
21 
22 // Utility Headers
23 #include <core/types.hh>
24 //#include <utility/vector1.hh>
25 
26 namespace protocols {
27 namespace simple_moves {
28 namespace oop {
29 
30 class OopPuckPlusMover : public OopMover {
31 
32 public:
33 
34  OopPuckPlusMover( core::Size oop_seq_position );
35  virtual ~OopPuckPlusMover();
36  virtual std::string get_name() const;
37 
38 };//end OopPuckPlusMover
39 
40 class OopPuckMinusMover : public OopMover {
41 
42 public:
43 
44  OopPuckMinusMover( core::Size oop_seq_position );
45  virtual ~OopPuckMinusMover();
46  virtual std::string get_name() const;
47 
48 };//end OopPuckMinusMover
49 
50 //kdrew: defines puck mover class for D chiral oop residues in half-chair conformation
51 class OopDPuckPlusMover : public OopMover {
52 
53 public:
54 
55  OopDPuckPlusMover( core::Size oop_seq_position );
56  virtual ~OopDPuckPlusMover();
57  virtual std::string get_name() const;
58 
59 };//end OopDPuckPlusMover
60 
61 //kdrew: defines puck mover class for D chiral oop residues in boat conformation
62 class OopDPuckMinusMover : public OopMover {
63 
64 public:
65 
66  OopDPuckMinusMover( core::Size oop_seq_position );
67  virtual ~OopDPuckMinusMover();
68  virtual std::string get_name() const;
69 
70 };//end OopDPuckMinusMover
71 
72 
73 }//namespace oop
74 }//namespace moves
75 }//namespace protocols
76 
77 #endif // INCLUDED_protocols_simple_moves_oop_OopPuckMover_hh