Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_DeleteMover.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_DeleteMover.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_monte_carlo_RNA_DeleteMover_hh
18 #define INCLUDED_protocols_swa_monte_carlo_RNA_DeleteMover_hh
19 
20 #include <core/pose/Pose.fwd.hh>
21 #include <core/types.hh>
22 #include <protocols/moves/Mover.hh>
25 
26 
27 namespace protocols {
28 namespace swa {
29 namespace monte_carlo {
30 
31 /////////////////////////////////////////////////////////////////////////////////////////////////
32 /////////////////////////////////////////////////////////////////////////////////////////////////
34 public:
35 
36 
37  //destructor -- necessary? -- YES destructors are necessary.
39 
41  void
42  apply( core::pose::Pose & pose, Size const res_to_delete, protocols::swa::monte_carlo::MovingResidueCase const moving_residue_case );
43 
44  /// @brief Apply the minimizer to one pose
45  virtual void apply( core::pose::Pose & pose_to_visualize );
46  virtual std::string get_name() const;
47 
48  void
50 
51 private:
52 
53 };
54 
55 } // monte_carlo
56 } // swa
57 } // protocols
58 
59 #endif