Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SurfaceDockingProtocol.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 SurfaceDocking.hh
16 /// @brief <add a description of the class>
17 /// @author Robin A Thottungal (rathottungal@gmail.com)
18 
19 #ifndef INCLUDED_protocols_surface_docking_SurfaceDockingProtocol_hh
20 #define INCLUDED_protocols_surface_docking_SurfaceDockingProtocol_hh
21 
22 // Unit Headers
24 #include <protocols/moves/Mover.hh>
25 // Package headers
26 
28 
29 // Project headers
30 #include <core/types.hh>
31 #include <core/pose/Pose.fwd.hh>
32 #include <utility/tag/Tag.fwd.hh>
37 #include <basic/datacache/BasicDataCache.hh>
40 // ObjexxFCL Headers
41 
42 // for adding data to pose
43 #include <basic/datacache/BasicDataCache.hh>
45 
46 
47 // Utility Headers
48 #include <utility/pointer/ReferenceCount.hh>
49 #include <utility/vector1.fwd.hh>
50 
51 // C++ Headers
52 #include <string>
53 #include <map>
54 #include <list>
55 
56 //Auto Headers
57 #include <sstream>
58 
59 
60 namespace protocols {
61 namespace surface_docking {
62 
64 
65 public:
66 
68 
69  //destructor
71 
72  void apply( core::pose::Pose & );
73 
74  virtual std::string get_name() const;
75 
76  void setupFoldTree(core::pose::Pose & pose);
77 
79 
81 
83 
84  void abinitio (core::pose::Pose & pose);
85 
86  //virtual void setup_list( core::pose::Pose & ) = 0;
87 
88  //virtual void set_angles( core::Real ) = 0;
89 
90  //virtual bool make_move( core::pose::Pose & ) = 0;
91 
92 private:
96 };
97 
98 
99 } // surfaceDockingProtocols
100 } // protocols
101 
102 #endif