Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TemplateFragmentClaimer.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_TemplateFragmentClaimer_hh
17 #define INCLUDED_protocols_topology_broker_TemplateFragmentClaimer_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>
32 // AUTO-REMOVED #include <protocols/abinitio/TemplateJumpSetup.hh>
33 // ObjexxFCL Headers
34 
35 // Utility headers
36 //#include <utility/io/izstream.hh>
37 //#include <utility/io/ozstream.hh>
38 //#include <utility/io/util.hh>
39 //#include <basic/Tracer.hh>
40 //#include <basic/options/option.hh>
41 
42 #include <utility/pointer/ReferenceCount.hh>
43 
45 #include <utility/vector1.hh>
46 
47 
48 //#include <basic/options/option_macros.hh>
49 
50 //// C++ headers
51 //#include <fstream>
52 
53 
54 // option key includes
55 
56 
57 namespace protocols {
58 namespace topology_broker {
59 
60 ///@brief hacky wrapper to keep the old Template code alive a bit longer
61 /// this claimer deals with the Jumpy part of the Templates.
63 public:
64  TemplateFragmentClaimer(); //for factory
65  TemplateFragmentClaimer( std::string config_file, core::Size fragsize, weights::AbinitioMoverWeightOP weight = NULL );
66 
67  virtual TopologyClaimerOP clone() const {
68  return new TemplateFragmentClaimer( *this );
69  }
70 
71  void read_config_file( std::string const& file );
72 
73  ///@brief type() is specifying the output name of the TopologyClaimer
74  virtual std::string type() const {
75  return _static_type_name();
76  }
77 
79  return "TemplateFragmentClaimer";
80  }
81 
82 protected:
83  virtual bool read_tag( std::string tag, std::istream& is );
84  virtual void init_after_reading();
85 private:
86  // info about homologues structures --- if available
90 }; //class TemplateFragmentClaimer
91 
92 }
93 }
94 
95 #endif