Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AsymFoldandDockClaimer.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 // This file is part of the Rosetta software suite and is made available under license.
5 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
6 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
7 // For more information, see http://www.rosettacommons.org/.
8 
9 /// @file TopologyBroker
10 /// @brief top-class (Organizer) of the TopologyBroker mechanism
11 /// @detailed responsibilities:
12 /// @author Oliver Lange
13 
14 
15 #ifndef INCLUDED_protocols_topology_broker_AsymFoldandDockClaimer_hh
16 #define INCLUDED_protocols_topology_broker_AsymFoldandDockClaimer_hh
17 
18 
19 // Unit Headers
21 
22 // Package Headers
25 
26 // Project Headers
27 #include <core/pose/Pose.hh>
29 #include <core/types.hh>
30 #include <protocols/loops/Loops.hh>
31 #include <utility/pointer/ReferenceCount.hh>
32 
33 #include <utility/vector1.hh>
34 
35 
36 
37 // option key includes
38 
39 
40 namespace protocols {
41 namespace topology_broker {
42 
45 
46 public:
47 
48  //c'stor
50  AsymFoldandDockClaimer( core::pose::Pose const& input_pose );
51 
52  //clone
53  virtual TopologyClaimerOP clone() const;
54 
55  ///@brief type() is specifying the output name of the TopologyClaimer
56  virtual std::string type() const;
57 
59 
60  virtual void add_mover(
61  moves::RandomMover& random_mover,
62  core::pose::Pose const& pose,
63  abinitio::StageID stageID,
64  core::scoring::ScoreFunction const& scorefxn,
65  core::Real progress
66  );
67 
68  virtual bool read_tag( std::string tag, std::istream& is );
69 
70  virtual void initialize_dofs( core::pose::Pose&,
71  DofClaims const& init_claims,
72  DofClaims& /*failed_to_init*/ );
73 
74  virtual void generate_claims( DofClaims& new_claims );
75 
76 core::Size docking_jump( core::pose::Pose& pose, core::Size chain_break_res );
77 private:
78 
79  ///@brief starting pose
84 
85 };
86 
87 }
88 }
89 
90 #endif