Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MembraneJump.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 MembraneJump
11 /// @brief read jump-definition file setups fold tree an chainbreak variants
12 /// loop code didn't work because fold-tree to complicated ( overlapping loops )
13 /// @detailed
14 /// @author Bjorn Wallner
15 
16 
17 #ifndef INCLUDED_protocols_jumping_MembraneJump_hh
18 #define INCLUDED_protocols_jumping_MembraneJump_hh
19 
20 
21 // Unit Headers
23 
24 // Package Headers
25 // AUTO-REMOVED #include <protocols/jumping/PairingLibrary.fwd.hh>
28 
29 
30 // Project Headers
31 #include <core/types.hh>
32 //#include <core/kinematics/ShortestPathInFoldTree.fwd.hh>
33 //#include <core/kinematics/MoveMap.hh>
34 
35 #include <core/pose/Pose.fwd.hh>
36 //#include <core/fragment/FrameList.fwd.hh>
37 //#include <core/fragment/FragSet.fwd.hh>
38 //#include <core/scoring/constraints/ConstraintForest.hh>
39 
40 
41 // ObjexxFCL Headers
42 #include <ObjexxFCL/FArray1D.hh>
43 // AUTO-REMOVED #include <ObjexxFCL/FArray2D.hh>
44 
45 // Utility headers
46 // AUTO-REMOVED #include <utility/vector1.hh>
47 #include <utility/pointer/ReferenceCount.hh>
48 
49 //// C++ headers
50 #include <cstdlib>
51 #include <string>
52 
53 #include <utility/vector1.hh>
54 
55 
56 
57 namespace protocols {
58 namespace jumping {
59 
60 
61 
62 
64 
65 public:
66  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
67  virtual ~MembraneJump();
68 MembraneJump();
69 
70 void
71 init(std::string const& template_file,std::string const& pairings_file);
72 
73 bool
74 defined() const {
75  return(template_size_ > 0 && pairings_size_ > 0);
76 }
77 
78 Size
79 template_size() const {
80  return template_size_;
81 }
82 
83 Size
84 pairings_size() const {
85  return pairings_size_;
86 }
87 
88 void
89 setup_fold_tree(core::pose::Pose & pose, core::Size njumps) const;
90 
91 
92 
93 private:
98 
99 };
100 
101 
102 
103 } //jumping
104 } //protocols
105 #endif