Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TemplateJumpClaimer.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_TemplateJumpClaimer_hh
17 #define INCLUDED_protocols_topology_broker_TemplateJumpClaimer_hh
18 
19 
20 // Unit Headers
22 
23 // Package Headers
28 // Project Headers
29 #include <core/pose/Pose.fwd.hh>
35 // ObjexxFCL Headers
36 
37 // Utility headers
38 //#include <utility/io/izstream.hh>
39 //#include <utility/io/ozstream.hh>
40 //#include <utility/io/util.hh>
41 //#include <basic/Tracer.hh>
42 //#include <basic/options/option.hh>
43 
44 #include <utility/pointer/ReferenceCount.hh>
45 
46 #include <utility/vector1.hh>
47 
48 
49 //#include <basic/options/option_macros.hh>
50 
51 //// C++ headers
52 //#include <fstream>
53 
54 
55 // option key includes
56 
57 
58 namespace protocols {
59 namespace topology_broker {
60 
61 ///@brief hacky wrapper to keep the old Template code alive a bit longer
62 /// this claimer deals with the Jumpy part of the Templates.
64 public:
65  TemplateJumpClaimer(); //for factory
67 
68  virtual TopologyClaimerOP clone() const {
69  return new TemplateJumpClaimer( *this );
70  }
71 
72  void read_config_file( std::string const& file );
73  void read_topol_file( std::string const& file );
74 
75  ///@brief type() is specifying the output name of the TopologyClaimer
76  virtual std::string type() const {
77  return _static_type_name();
78  }
79 
81  return "TemplateJumpClaimer";
82  }
83 
84 protected:
85  virtual bool read_tag( std::string tag, std::istream& is );
86  virtual void init_after_reading();
87 private:
88  // info about homologues structures --- if available
90 
91  // or should we make jumps in the old-fashioned way with SheetBuilder?
96 
97 }; //class TemplateJumpClaimer
98 
99 }
100 }
101 
102 #endif