Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DesignVsNativeComparison.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 stuff to compare designs against the native pdb
11 /// @brief
12 /// @author Florian Richter, floric@u.washington.edu
13 
14 
15 #ifndef INCLUDED_protocols_enzdes_DesignVsNativeComparison_hh
16 #define INCLUDED_protocols_enzdes_DesignVsNativeComparison_hh
17 
18 
19 
20 // Unit headers
21 
22 // Package headers
23 
24 // Project headers
25 #include <core/pose/Pose.fwd.hh>
28 
29 // Utility Headers
30 #include <utility/pointer/ReferenceCount.hh>
31 #include <utility/pointer/owning_ptr.hh>
32 #include <utility/vector1.fwd.hh>
33 
34 //Utility Headers
35 
36 // C++ Headers
37 #include <string>
38 #include <map>
39 
40 #include <utility/vector1.hh>
41 
42 
43 
44 namespace protocols {
45 namespace enzdes {
46 
49 
50 
51 
52 /// @brief class that holds a bunch of native poses and compares them
53 /// @brief against a given input pose on request
55 
56  //friend class EnzConstraintParameters;
57 
58 public:
59 
61 
62  virtual ~DesignVsNativeComparison();
63 
64  void
66  core::pose::Pose const & pose,
67  utility::vector1< std::pair< std::string, std::string > > const & calculators,
70  );
71 
72 private:
73 
74  std::map< std::string, core::pose::PoseOP > native_poses_;
75 
76 }; //class DesignVsNativeComparison
77 
78 } //protocols
79 } //enzdes
80 
81 
82 #endif