Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DisulfJumpClaimer.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 DisulfJumpClaimer
11 /// @brief Claimer for disulfide jump sampling
12 /// @detailed responsibilities:
13 /// @author Robert Vernon
14 
15 
16 #ifndef INCLUDED_protocols_topology_broker_DisulfJumpClaimer_hh
17 #define INCLUDED_protocols_topology_broker_DisulfJumpClaimer_hh
18 
19 
20 // Unit Headers
22 
23 // Package Headers
27 
28 // Project Headers
29 #include <core/pose/Pose.fwd.hh>
30 // AUTO-REMOVED #include <protocols/jumping/JumpSetup.hh>
31 // AUTO-REMOVED #include <protocols/jumping/JumpSample.hh>
34 
36 #include <core/fragment/Frame.hh>
37 // AUTO-REMOVED #include <core/fragment/FrameIteratorWorker_.hh>
38 // AUTO-REMOVED #include <core/fragment/JumpingFrame.hh>
39 // AUTO-REMOVED #include <core/fragment/BBTorsionSRFD.hh>
40 // AUTO-REMOVED #include <core/fragment/JumpSRFD.hh>
41 
42 // AUTO-REMOVED #include <core/kinematics/FoldTree.hh>
44 
45 // ObjexxFCL Headers
46 
47 // Utility headers
48 //#include <utility/io/izstream.hh>
49 //#include <utility/io/ozstream.hh>
50 //#include <utility/io/util.hh>
51 //#include <basic/Tracer.hh>
52 //#include <basic/options/option.hh>
53 
54 #include <utility/pointer/ReferenceCount.hh>
55 
56 #include <utility/vector1.hh>
57 
58 
59 //#include <basic/options/option_macros.hh>
60 
61 //// C++ headers
62 //#include <fstream>
63 
64 
65 // option key includes
66 
67 
68 namespace protocols {
69 namespace topology_broker {
70 
71 ///@brief Claimer that works with the old system of BaseJumpSetup
72 /// it supports only JumpFrames of type [ BBTorsion ] UpJump DownJump [ BBTorsion ]
73 /// the class JumpSample is still used to transport the information jumps and jump_atoms, but cuts are ignored
74 /// all functionality of JumpSample is not used anymore
77 public:
78  DisulfJumpClaimer(); //for factory
79 
80  //DisulfJumpClaimer( std::string const& mover_tag = "JumpMove", weights::AbinitioMoverWeightOP weight = NULL );
81 
82  virtual TopologyClaimerOP clone() const {
83  return new DisulfJumpClaimer( *this );
84  }
85 
88  //core::kinematics::MoveMap const& mm,
89  core::fragment::FrameList& all_frames) const;
90 
91  //void generate_jump_frames(
92  // core::fragment::FrameList& all_frames,
93  // core::kinematics::MoveMap const& mm) const;
94 
95  virtual void generate_claims( DofClaims& );
96 
97  virtual void new_decoy( core::pose::Pose const& );
98  virtual void new_decoy();
99 
100  ///@brief type() is specifying the output name of the TopologyClaimer
101  virtual std::string type() const {
102  return _static_type_name();
103  }
104 
105  virtual void initialize_dofs( core::pose::Pose&, DofClaims const& init_claims, DofClaims& failed_to_init );
106 
108  return "DisulfJumpClaimer";
109  }
110 
111  virtual bool read_tag( std::string tag, std::istream& is );
112 
113 protected:
114 // void set_jump_def( jumping::BaseJumpSetupOP jump_def ) {
115 // jump_def_ = jump_def;
116 // }
117 
118 // jumping::BaseJumpSetupOP jump_def() {
119 // return jump_def_;
120 // }
121 
122 private:
123  //jumping::BaseJumpSetupOP jump_def_;
124  //jumping::JumpSample current_jumps_;
125 
126 
127  //std::string secstruct_;
128  //size nr_jumps_;
129  //ObjexxFCL::FArray2D< std::string > use_jump_atoms_;
130  //ObjexxFCL::FArray2D_int use_jumps_;
131  //ObjexxFCL::FArray1D_int use_cuts_;
132  //core::kinematics::FoldTreeOP use_fold_tree_;
133 
136 
137  // abinitio::ClassicFragmentMoverOP init_mover_;
139 }; //class DisulfJumpClaimer
140 
141 }
142 }
143 
144 #endif