Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
read_patchdock.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/protein_interface_design/read_patchdock.hh
11 /// @brief
12 /// @author Sarel Fleishman (sarelf@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_read_patchdock_hh
15 #define INCLUDED_protocols_protein_interface_design_read_patchdock_hh
16 
17 #include <core/pose/Pose.fwd.hh>
18 #include <core/types.hh>
19 #include <utility/pointer/ReferenceCount.hh>
20 // AUTO-REMOVED #include <numeric/xyz.functions.hh>
21 #include <utility/vector1.hh>
22 
23 #include <numeric/xyzVector.hh>
24 
25 #ifdef WIN32
26 #include <string>
27 #endif
28 
29 // Project Headers
30 // C++ headers
31 namespace protocols {
32 namespace protein_interface_design {
33 
35 {
36  typedef core::Real Real;
37 
38  Real alpha, beta, gamma; // Euler angles
40 };
41 
43 {
44 public:
46  virtual ~PatchdockReader();
47  /// @brief if no native is read
48  void read_poses( core::pose::Pose & input_pose, std::string & input_tag );
49 
50 /// @brief reads input and native poses from file. If patchdock flags are used will read the patchdock transformation
51 /// and transform the input pose accordingly
52  void read_poses( core::pose::Pose & input_pose, core::pose::Pose & native_pose, std::string & input_tag, std::string & native_tag );
53 
54  void read_patchdock( std::string & input_tag, std::string & native_tag );
56 
57  void clear_internals();
59 private:
65 };
66 }
67 }
68 
69 #endif /*INCLUDED_READ_PATCHDOCK_H_*/
70