Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DownstreamRMSEvaluator.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file protocols/match/output/DownstreamRMSEvaluator.hh
12 /// @brief
13 /// @author Alex Zanghellini (zanghell@u.washington.edu)
14 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
15 
16 #ifndef INCLUDED_protocols_match_output_DownstreamRMSEvaluator_hh
17 #define INCLUDED_protocols_match_output_DownstreamRMSEvaluator_hh
18 
19 // Unit headers
21 
22 // Package headers
25 
26 // Project headers
27 // AUTO-REMOVED #include <core/id/AtomID.hh>
28 #include <core/pose/Pose.fwd.hh>
29 
30 // Utility headers
31 // AUTO-REMOVED #include <utility/vector1.hh>
32 
33 // Numeric headers
34 // AUTO-REMOVED #include <numeric/xyzVector.hh>
35 
36 #include <core/id/AtomID.fwd.hh>
37 #include <utility/vector1.hh>
38 
39 
40 
41 namespace protocols {
42 namespace match {
43 namespace output {
44 
45 /// @brief In the best of all possible worlds, this class would be sufficiently
46 /// generic such that I could compare RMS for arbitrary subsets of atoms on
47 /// the downstream partner, but in my first pass implementation, I'm writing
48 /// while aiming at the RigidLigandBuilder -- 1 residue -- and I'll compare
49 /// all heavy atoms.
51 {
52 public:
53  typedef core::Size Size;
56 public:
58  virtual ~DownstreamRMSEvaluator();
59 
60  void
62 
63  void
65 
66  void
68  Size which_geom_cst,
70  );
71 
72  virtual
73  Real
74  score( match const & m ) const;
75 
76  /// @brief Causes a graceful exit. The DownstreamRMSEvaluator is incompatible with
77  /// the match_dspos1 match definition!
78  virtual
79  Real
80  score( match_dspos1 const & m ) const;
81 
82 private:
84 
86 
89 
90 };
91 
92 }
93 }
94 }
95 
96 #endif