Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StartStructClaimer.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 TopologyBroker
11 /// @brief top-class (Organizer) of the TopologyBroker mechanism
12 /// @detailed responsibilities:
13 /// @author Oliver Lange
14 
15 
16 #ifndef INCLUDED_protocols_topology_broker_StartStructClaimer_hh
17 #define INCLUDED_protocols_topology_broker_StartStructClaimer_hh
18 
19 
20 // Unit Headers
23 
24 // Package Headers
26 
27 // Project Headers
28 #include <core/pose/Pose.hh>
30 
31 #include <protocols/loops/Loops.hh>
32 
33 
34 //#include <core/fragment/FragSet.hh>
35 
36 
37 // ObjexxFCL Headers
38 
39 // Utility headers
40 
41 
42 //#include <utility/io/izstream.hh>
43 //#include <utility/io/ozstream.hh>
44 //#include <utility/io/util.hh>
45 //#include <basic/Tracer.hh>
46 //#include <basic/options/option.hh>
47 
48 #include <utility/pointer/ReferenceCount.hh>
49 #include <set>
50 
51 //#include <basic/options/option_macros.hh>
52 
53 //// C++ headers
54 //#include <fstream>
55 #include <string>
56 
57 #include <utility/vector1.hh>
58 
59 
60 // option key includes
61 
62 
63 namespace protocols {
64 namespace topology_broker {
65 
66 class StartStructClaimer : public virtual FragmentClaimer {
67 public:
68  StartStructClaimer(); //for factory
69  StartStructClaimer( core::pose::Pose const& /*idealized*/ );
70 
71  virtual void generate_sequence_claims( DofClaims& );
72 
73  virtual TopologyClaimerOP clone() const {
74  return new StartStructClaimer( *this );
75  }
76 
77  ///@brief type() is specifying the output name of the TopologyClaimer
78  virtual std::string type() const {
79  return _static_type_name();
80  }
81 
82  ///@brief overloaded to allow perturbation of start structure
83  virtual void initialize_dofs( core::pose::Pose&, DofClaims const& init_claims, DofClaims& failed_to_init );
84 
86  return "StartStructClaimer";
87  }
88 
89  virtual void new_decoy( core::pose::Pose const& );
90  virtual void new_decoy( );
91  virtual bool read_tag( std::string tag, std::istream & );
92 
93  ///@brief initialize sequence ( for approved sequence claims given as init_claim ) Claimer searches init_claims for claims owned by *this
94  virtual void initialize_residues( core::pose::Pose&, SequenceClaimOP init_claim, DofClaims& failed_to_init );
95 
96  virtual moves::MoverOP get_mover( core::pose::Pose const& /*pose*/ ) const
97  { return NULL; }; /*does not provide mover*/
98 
99 protected:
100  void generate_init_frags( core::pose::Pose const& );
101 private:
102 
103  ///@brief use the job input pose to get starting structure
105 
106  ///@brief perturb start torsions by gaussian()*perturb_
108 
110 }; //class StartStructClaimer
111 
112 
113 }
114 }
115 
116 #endif