Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AddCavitiesMover.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 protocols/simple_moves/AddCavitiesMover.hh
11 ///
12 /// @brief
13 /// @author
14 
15 
16 #ifndef INCLUDED_protocols_simple_moves_AddCavitiesMover_hh
17 #define INCLUDED_protocols_simple_moves_AddCavitiesMover_hh
18 
22 
23 #include <protocols/moves/Mover.hh>
24 
25 // AUTO-REMOVED #include <core/conformation/Residue.hh>
26 
28 #include <utility/vector1.hh>
29 
30 
31 
32 namespace protocols {
33 namespace simple_moves {
34 
35 
37 public:
38 
40  core::Size max_cav = 100,
41  core::Real min_size = 1.2,
42  core::Size min_nb = 150,
43  core::Real min_sep = 3.0
44  );
45 
46  void
48  core::pose::Pose & pose
49  );
50 
51  void
53  core::pose::Pose & pose
54  );
55 
56  virtual
57  void
58  apply(
59  core::pose::Pose & pose
60  );
61  virtual std::string get_name() const;
62 
63 protected:
64 
67  core::pose::Pose & pose,
69  );
70 
72  get_suck_res();
73 
76  core::pose::Pose & pose,
77  core::Real nbdis,
78  int nbcount,
79  core::Real minsep
80  );
81 
87 
88 };
89 
90 
91 
92 
93 } // end namespace simple_moves
94 } // end namespace protocols
95 
96 #endif