Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RestrictInterGroupVectorOperation.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/RestrictInterGroupVectorOperation.hh
11 /// @brief restricts design to only those residues between two groups of structures
12 /// @author Ben Stranges stranges@unc.edu
13 
14 #ifndef INCLUDED_protocols_toolbox_task_operations_RestrictInterGroupVectorOperation_hh
15 #define INCLUDED_protocols_toolbox_task_operations_RestrictInterGroupVectorOperation_hh
16 
17 // unit headers
19 
20 //package headers
22 
23 //project headers
25 #include <core/types.hh>
26 
27 // Utility Headers
28 #include <utility/tag/Tag.fwd.hh>
29 #include <utility/vector1.hh>
30 
31 //C++ headers
32 #include <set>
33 #include <utility> //pair
34 
35 
36 namespace protocols{
37 namespace toolbox{
38 namespace task_operations{
39 
41 public:
43  typedef std::set< core::Size > one_group;
44  typedef std::pair< one_group, one_group > group_pair;
46 public:
47 
48  /// @brief default constructor
50 
51  /// @brief full constructor
53  group_vector const & group,
58 
59  //@brief convienience contstuctor for one pair
61  group_pair const & one_group,
66 
67  /// @brief destructor
69 
70  /// @brief make clone
72 
73 public:
74  ///@breif parse_tag
75  //parse_tag(
76  // utility::tag::TagPtr tag,
77  // core::pose::Pose const & pose);
78 
79  /// @brief apply
80  virtual void apply( Pose const & pose, core::pack::task::PackerTask & task ) const;
81 
82 // ///@brief parse_tag
83 // void parse_tag(utility::tag::TagPtr tag);
84 
85  /// @brief setters for member data
91 
92 private:
98 };
99 
100 
101 } // TaskOperations
102 } // toolbox
103 } // protocols
104 #endif