Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PreventResiduesFromRepackingOperation.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/toolbox/task_operations/PreventResiduesFromRepackingOperation.hh
11 /// @brief TaskOperation class that prevents a vector of residues indices from repacking
12 /// parsed as a string that is comma delimited ","
13 /// @author Eva-Maria Strauch (evas01@uw.edu)
14 
15 #ifndef INCLUDED_protocols_toolbox_task_operations_PreventResiduesFromRepackingOperation_hh
16 #define INCLUDED_protocols_toolbox_task_operations_PreventResiduesFromRepackingOperation_hh
17 
18 // Unit Headers
21 
22 // Project Headers
23 #include <core/pose/Pose.fwd.hh>
25 #include <utility/tag/Tag.fwd.hh>
26 
27 // Utility Headers
28 #include <core/types.hh>
29 #include <utility/vector1.hh>
30 
31 // C++ Headers
32 #include <string>
33 
34 namespace protocols {
35 namespace toolbox {
36 namespace task_operations {
37 
38 ///@details this class is a TaskOperation to prevent repacking of residues not near an interface.
40 {
41 public:
43 
45 
47 
49 
50  void set_residues( utility::vector1 < core::Size > residues_vec );
51 
53 
54  virtual TaskOperationOP clone() const;
55 
56  virtual
57  void
59 
60  virtual void parse_tag( TagPtr );
61 
62 private:
65 };
66 
67 } //namespace protocols
68 } //namespace toolbox
69 } //namespace task_operations
70 
71 #endif // INCLUDED_protocols_toolbox_TaskOperations_PreventResiduesFromRepackingOperation_HH