Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_AddOrDeleteMover.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 RNA_AddOrDeleteMover.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_monte_carlo_RNA_AddOrDeleteMover_hh
18 #define INCLUDED_protocols_swa_monte_carlo_RNA_AddOrDeleteMover_hh
19 
20 #include <core/pose/Pose.fwd.hh>
21 #include <core/types.hh>
22 #include <protocols/moves/Mover.hh>
27 
28 
29 namespace protocols {
30 namespace swa {
31 namespace monte_carlo {
32 
33 /////////////////////////////////////////////////////////////////////////////////////////////////
34 /////////////////////////////////////////////////////////////////////////////////////////////////
36 public:
37 
38 
39  RNA_AddOrDeleteMover( RNA_AddMoverOP rna_add_mover,
40  RNA_DeleteMoverOP rna_delete_mover );
41 
42  //destructor -- necessary? -- YES destructors are necessary.
45  void
46  apply( core::pose::Pose & pose, std::string & move_type );
47 
48  /// @brief Apply the minimizer to one pose
49  virtual void apply( core::pose::Pose & pose_to_visualize );
50  virtual std::string get_name() const;
51 
53 
54 private:
55 
59 
60 };
61 
62 } // monte_carlo
63 } // swa
64 } // protocols
65 
66 #endif