Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RRProtocol.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 src/protocols/rotamer_recovery/RRProtocol.hh
11 /// @author Matthew O'Meara (mattjomeara@gmail.com)
12 
13 #ifndef INCLUDED_protocols_rotamer_recovery_RRProtocol_hh
14 #define INCLUDED_protocols_rotamer_recovery_RRProtocol_hh
15 
16 // Unit Headers
18 
19 // Project Headers
22 
23 // Platform Headers
26 #include <core/pose/Pose.fwd.hh>
28 
29 // Utility headers
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 //Auto Headers
33 #include <utility/vector1.hh>
34 namespace protocols {
35 namespace rotamer_recovery {
36 
37 ///@brief The protocol to run to compute the rotamer recovery the rotamer recovery test
38 ///
39 /// Besides implementing the interface given in the base class
40 /// RRProtocol each RRProtocol should have an entry in the convenience
41 /// RotamerRecovery constructor so its use can be indicated by name.
43 
44 public: // constructors destructors
45  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
46  virtual ~RRProtocol();
47 
48 // RRProtocol();
49 //
50 // ~RRProtocol();
51 //
52 // RRProtocol( RRProtocol const & src );
53 
54 protected:
55  bool
57  RRComparerOP comparer,
58  RRReporterOP reporter,
59  core::pose::Pose const & pose1,
60  core::pose::Pose const & pose2,
61  core::conformation::Residue const & res1,
62  core::conformation::Residue const & res2);
63 
64 public: // public interface
65 
66  virtual
68  get_name() const = 0;
69 
70  virtual
72  get_parameters() const = 0;
73 
74  virtual
75  void
76  run(
77  RRComparerOP comparer,
78  RRReporterOP reporter,
79  core::pose::Pose const & pose,
80  core::scoring::ScoreFunction const & score_function,
81  core::pack::task::PackerTask const & packer_task) = 0;
82 
83 };
84 
85 } // namespace
86 } // namespace
87 
88 #endif // include guard