Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RmsdEvaluator.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 relax_initialization_protocols
11 /// @brief initialization protocols for relax
12 /// @detailed
13 /// Contains currently: Classic Abinitio
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_simple_filters_RmsdEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_RmsdEvaluator_hh
22 
23 
24 // Unit Headers
26 
27 // Package Headers
28 // AUTO-REMOVED #include <protocols/evaluation/util.hh>
29 
30 // Project Headers
32 #include <core/pose/Pose.fwd.hh>
33 
34 // ObjexxFCL Headers
35 
36 // Utility headers
37 #include <utility/pointer/ReferenceCount.hh>
38 // AUTO-REMOVED #include <utility/vector1.hh>
39 
40 //// C++ headers
41 #include <list>
42 
43 #include <core/scoring/rms_util.hh>
44 #include <protocols/loops/Loops.hh>
45 #include <utility/vector1.hh>
46 
47 
48 namespace protocols {
49 namespace simple_filters {
50 
51 
52 
54 public:
56  RmsdEvaluator( core::pose::PoseCOP, std::string tag = "", bool bGDT = true);
58  virtual void
60 
61  ///@brief evaluate pose
62  virtual core::Real apply( core::pose::Pose& ) const;
63 
64  void report_gdt_components( bool const setting ){ report_gdt_components_ = setting; }
65 
66 private:
70  bool bGDT_;
73 };
74 
76 public:
77  SelectRmsdEvaluator( core::pose::PoseCOP, core::scoring::ResidueSelection const& selection, std::string tag = "", bool CAonly=true );
78  SelectRmsdEvaluator( core::pose::PoseCOP, utility::vector1< core::Size> const& selection, std::string tag = "", bool CAonly=true );
79 
80  //work it out by yourself from missing density == whacky random coords
81  SelectRmsdEvaluator( core::pose::PoseCOP, std::string tag = "", bool CAonly=true );
82 
83  //work it out by yourself from missing density == whacky random coords
84  SelectRmsdEvaluator( core::pose::Pose const&, std::string tag = "", bool CAonly=true );
85 
86  ///@brief evaluate pose
87  virtual core::Real apply( core::pose::Pose& ) const;
88 
89 private:
93  bool CAonly_;
94 };
95 
97 public:
100 
101  //work it out by yourself from missing density == whacky random coords
104  //work it out by yourself from missing density == whacky random coords
105  SelectGdtEvaluator( core::pose::Pose const&, std::string tag = "" );
106 
107  ///@brief evaluate pose
108  virtual core::Real apply( core::pose::Pose& ) const;
109 
110 private:
114 };
115 
117 public:
118  SelectMaxsubEvaluator( core::pose::PoseCOP, core::scoring::ResidueSelection const& selection, std::string tag = "", core::Real rmsd_threshold = 4.0 );
119  SelectMaxsubEvaluator( core::pose::PoseCOP, utility::vector1< core::Size> const& selection, std::string tag = "", core::Real rmsd_threshold = 4.0 );
120 
121  //work it out by yourself from missing density == whacky random coords
122  SelectMaxsubEvaluator( core::pose::PoseCOP, std::string tag = "", core::Real rmsd_threshold = 4.0 );
123 
124  //work it out by yourself from missing density == whacky random coords
125  SelectMaxsubEvaluator( core::pose::Pose const&, std::string tag = "", core::Real rmsd_threshold = 4.0 );
126 
127  ///@brief evaluate pose
128  virtual core::Real apply( core::pose::Pose& ) const;
129 
130 private:
135 };
136 
138 public:
141  virtual core::Real apply ( core::pose::Pose& ) const;
142 
143 private:
145 
146 };
147 
149 public:
152  virtual core::Real apply ( core::pose::Pose& ) const;
153 
154 private:
158  bool CAonly_;
160 };
161 
162 }
163 }
164 
165 #endif