Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Align_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 Align_RmsdEvaluator
11 /// @author James Thompson
12 
13 #ifndef INCLUDED_protocols_comparative_modeling_Align_RmsdEvaluator_hh
14 #define INCLUDED_protocols_comparative_modeling_Align_RmsdEvaluator_hh
15 
17 
20 
22 #include <core/pose/Pose.fwd.hh>
23 
24 #include <core/types.hh>
25 
26 #include <ObjexxFCL/FArray2D.fwd.hh>
27 #include <utility/pointer/ReferenceCount.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 namespace protocols {
33 namespace comparative_modeling {
34 
36 
37 public:
40  std::string tag = "",
41  bool calc_gdt = true,
43  );
44 
46 
47  virtual void apply(
48  core::pose::Pose & pose,
51  ) const;
52 
53  virtual core::Real apply(
54  core::pose::Pose & /*pose*/
55  ) const {
56  return 0;
57  }
58 
59  void report_gdt_components( bool const setting ) {
60  report_gdt_components_ = setting;
61  if ( setting ) calc_gdt(true);
62  }
63 
64  bool report_gdt_components() const {
66  }
67 
68  void calc_gdt( bool const setting ) {
69  calc_gdt_ = setting;
70  }
71 
72  bool calc_gdt() const {
73  return calc_gdt_;
74  }
75 
76 private:
77  bool calc_gdt_;
79 }; // Align_RmsdEvaluator
80 
81 } // comparative_modeling
82 } // protocols
83 
84 #endif