Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SelectBySASAOperation.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 /// @brief Restrict design to residues matching user-specified SASA criteria in the monomeric, bound, or unbound state.
11 /// @author Jacob Bale (balej@uw.edu)
12 
13 #ifndef INCLUDED_protocols_toolbox_task_operations_SelectBySASAOperation_hh
14 #define INCLUDED_protocols_toolbox_task_operations_SelectBySASAOperation_hh
15 
16 // Unit Headers
20 
21 // Project Headers
22 #include <core/pose/Pose.fwd.hh>
23 #include <utility/tag/Tag.fwd.hh>
24 #include <utility/vector1.hh>
25 #include <core/types.hh>
26 
27 // Utility Headers
28 #include <string>
29 
30 // C++ Headers
31 
32 namespace protocols {
33 namespace toolbox {
34 namespace task_operations {
35 
37 public:
38  SelectBySASAOperation( std::string mode = "sc", std::string state = "monomer", core::Real probe_radius = 2.2, core::Real core_asa = 0, core::Real surface_asa = 30, std::string jump_nums = "1", std::string sym_dof_names = "", bool core = 0, bool boundary = 0, bool surface = 0, bool verbose = 0 );
39 
40  virtual ~SelectBySASAOperation();
41 
43 
44  virtual
45  void
47 
48  void parse_tag( TagPtr tag );
49  void parse_def( utility::lua::LuaObject const & def );
50 
51 private:
59  bool core_;
60  bool boundary_;
61  bool surface_;
62  bool verbose_;
63 };
64 
65 } //namespace task_operations
66 } //namespace toolbox
67 } //namespace protocols
68 
69 #endif