Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SurfaceOrientMover.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;
2 // rm-trailing-spaces:t -*-
3 // vi: set ts=2 noet:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available
7 // under license.
8 // (c) The Rosetta software is developed by the contributing members of the
9 // Rosetta Commons.
10 // (c) For more information, see http://www.rosettacommons.org. Questions about
11 // this can be
12 // (c) addressed to University of Washington UW TechTransfer,
13 // email: license@u.washington.edu.
14 
15 /// @file SurfaceOrientMover.hh
16 /// @brief <add a description of the class>
17 /// @author Robin A Thottungal (raugust1@jhu.edu)
18 
19 #ifndef INCLUDED_protocols_surface_docking_SurfaceOrientMover_hh
20 #define INCLUDED_protocols_surface_docking_SurfaceOrientMover_hh
21 
22 // Unit Headers
23 
24 // Package headers
25 
26 // Project headers
27 #include <core/types.hh>
28 #include <core/pose/Pose.fwd.hh>
30 #include <basic/datacache/BasicDataCache.hh>
31 #include <protocols/moves/Mover.hh>
32 
33 // Utility Headers
34 #include <utility/pointer/owning_ptr.hh>
35 
36 // C++ Headers
37 #include <string>
38 #include <map>
39 #include <list>
40 #include <sstream>
41 
42 
43 namespace protocols {
44 namespace surface_docking {
45 
46 class SurfaceOrientMover;
48 
50 
51 public:
52 
54 
55  //destructor
57 
58  // virtual functions that get overloaded or
59  // called from the inheriting classes
60  void apply( core::pose::Pose & );
61 
62  virtual std::string get_name() const;
63 
64  core::Vector CalcTransVec(core::Real ProjectionDistance,
65  core::Real VectorDistance,core::Vector Vec);
66 
67 };
68 
69 
70 } // surfaceDockingProtocols
71 } // protocols
72 
73 #endif