Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FoldandDockClaimer.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_FoldandDockClaimer_hh
16 #define INCLUDED_protocols_topology_broker_FoldandDockClaimer_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 <utility/pointer/ReferenceCount.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 
36 // option key includes
37 
38 
39 namespace protocols {
40 namespace topology_broker {
41 
44 
45 public:
46 
47  //c'stor
49  FoldandDockClaimer( core::pose::Pose const& input_pose );
50 
51  //clone
52  virtual TopologyClaimerOP clone() const;
53 
54  ///@brief type() is specifying the output name of the TopologyClaimer
55  virtual std::string type() const;
56 
58 
59  virtual void add_mover(
60  moves::RandomMover& random_mover,
61  core::pose::Pose const& pose,
62  abinitio::StageID stageID,
63  core::scoring::ScoreFunction const& scorefxn,
64  core::Real progress
65  );
66 
67  virtual void initialize_dofs( core::pose::Pose&,
68  DofClaims const& init_claims,
69  DofClaims& /*failed_to_init*/ );
70 
71  virtual void generate_claims( DofClaims& new_claims );
72 
73 private:
74 
75  ///@brief starting pose
77 
78 };
79 
80 }
81 }
82 
83 #endif