Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SpecialRotamerRotSetOps.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/toolbox/RotamerSetOperations/SpecialRotamerRotSetOps.hh
11 /// @brief classes for rigid body movement during rotamer packing
12 /// @author Florian Richter, floric@u.washington.edu, sep 2009
13 
14 #ifndef INCLUDED_protocols_toolbox_rotamer_set_operations_SpecialRotamerRotSetOps_hh
15 #define INCLUDED_protocols_toolbox_rotamer_set_operations_SpecialRotamerRotSetOps_hh
16 
17 // Unit Headers
20 
21 //Project headers
23 #include <core/graph/Graph.fwd.hh>
26 #include <core/pose/Pose.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 #ifdef WIN32
32  #include <core/graph/Graph.hh>
33 #endif
34 
35 
36 namespace protocols {
37 namespace toolbox {
38 namespace rotamer_set_operations {
39 
41 {
42 public:
44  typedef core::Real Real;
45  typedef core::Size Size;
46 
47  SpecialRotamerRSO( core::Size seqpos );
48  SpecialRotamerRSO( SpecialRotamerRSO const & src );
50 
51  virtual
53  clone() const;
54 
55  virtual
56  void
58  core::pose::Pose const & pose,
59  core::scoring::ScoreFunction const & sfxn,
60  core::pack::task::PackerTask const & ptask,
61  core::graph::GraphCOP packer_neighbor_graph,
63  );
64 
65  virtual //virtual or not?
66  void
69  );
70 
71 private:
74 
75 };
76 
77 } //namespace rotamer_set_operations
78 } //namespace toolbox
79 } //namespace protocols
80 
81 #endif