Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InvrotTreeRCG.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/forge/constraints/InvrotTreeRCG.hh
11 ///
12 /// @brief
13 /// @author Florian Richter, floric@u.washington.edu, may 2012
14 /// @modified Tom Linsky, tlinsky@uw.edu, nov 2012
15 
16 #ifndef INCLUDED_protocols_forge_constraints_InvrotTreeRCG_hh
17 #define INCLUDED_protocols_forge_constraints_InvrotTreeRCG_hh
18 
19 //unit headers
21 
22 //package headers
24 
25 //project headers
26 #include <core/pose/Pose.fwd.hh>
27 #include <core/types.hh>
28 
33 
34 // C++headers
35 
36 namespace protocols{
37 namespace forge{
38 namespace constraints{
39 
40 
41 
42 /// @brief a RemodelConstraintGenerator wrapper that makes
43 /// the constraints generated by an InvrotTree available in
44 /// VLB or XML
46 {
47 
48 public:
49 
50  InvrotTreeRCG();
51 
52  InvrotTreeRCG( InvrotTreeRCG const & rval );
53 
57  );
58 
60 
61  virtual void
62  parse_my_tag( TagPtr const tag,
64  protocols::filters::Filters_map const & filters,
65  protocols::moves::Movers_map const & movers,
66  core::pose::Pose const & pose );
67 
68  virtual std::string
69  get_name() const;
70 
72  fresh_instance() const;
73 
75  clone() const;
76 
77  virtual void
78  apply( core::pose::Pose & pose );
79 
80  virtual
81  void
83  core::pose::Pose const & pose );
84 
85  /// @brief sets up the allowed sequence positions for enzdes geometric constraints
86  virtual void
87  init( core::pose::Pose const & pose );
88 
89 public:
90  // non-virtual member functions
91 
92  /// @brief tells the mover whether it should add the ligand to the pose
93  void set_add_ligand_to_pose( bool const add_lig );
94 
95  /// @brief sets up the invrot_tree_ and enzcst_io_ from an enzdes constraint filename.
96  void set_cstfile( std::string const & cstfilename );
97 
98 protected:
99 
100 private:
107 }; //class InvrotTreeRCG
108 
109 
110 } //namespace remodel
111 } //namespace forge
112 } //namespace protocols
113 
114 
115 
116 
117 #endif // INCLUDED_protocols_forge_remodel_InvrotTreeRCG_HH