Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ReplicateTask.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 src/core/pack/task/operation/ReplicateTask.hh
11 /// @details Replicates logic from one pose onto another. Poses must be the same size!
12 /// Only copies logic for being_packed and being_designed
13 /// @author stranges
14 
15 #ifndef INCLUDED_core_pack_task_operation_ReplicateTask_hh
16 #define INCLUDED_core_pack_task_operation_ReplicateTask_hh
17 
21 
22 
23 // for parsing
24 #include <utility/tag/Tag.fwd.hh>
25  //#include <utility/vector1.hh>
26 
27 #include <core/types.hh>
29 #include <core/pose/Pose.fwd.hh>
30 
31 #include <utility/vector1.hh>
32 
33 
34 namespace core {
35 namespace pack {
36 namespace task {
37 namespace operation {
38 
40 {
41 public:
45 public:
46  //constructors
47  ///@brief empty constructor need to call set_native_task(task) to make it work
48  ReplicateTask();
49  ///@brief actual useful constructors
51  ReplicateTask( core::pose::Pose & native_pose, core::pack::task::TaskFactoryOP task_factory );
52 
53  virtual ~ReplicateTask();
54  virtual TaskOperationOP clone() const;
55 
56  virtual void apply( core::pose::Pose const & pose, core::pack::task::PackerTask & task ) const;
57  /// Does NOT Work! DO NOT USE parse_tag here
58  virtual void parse_tag( utility::tag::TagPtr tag );
59  //void symmetric_task( core::pose::Pose const & pose, task::PackerTask & task ) const;
61 
62 
63 private:
65 
66 };//end of class ReplicateTask
67 
68 } //operation
69 } //pack
70 } //task
71 } //core
72 
73 #endif