Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RandomSheetBuilder.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 src/protocols/jumping/PairingTemplate
11 /// @brief header file for ClassicAbinitio protocol
12 /// @detailed
13 /// from converting jumping_pairings.cc of rosetta++ into mini
14 ///
15 ///
16 ///
17 /// @author Oliver Lange
18 
19 #ifndef INCLUDED_protocols_jumping_RandomSheetBuilder_hh
20 #define INCLUDED_protocols_jumping_RandomSheetBuilder_hh
21 
22 // Unit Headers
24 
25 // Package Headers
30 
31 // Project Headers
32 #include <core/pose/Pose.fwd.hh>
33 #include <core/types.hh>
35 
36 // Utility headers
37 #include <utility/pointer/ReferenceCount.hh>
38 // AUTO-REMOVED #include <utility/vector1.hh>
39 
40 // ObjexxFCL Headers
41 #include <ObjexxFCL/FArray2A.fwd.hh>
42 
43 #include <utility/vector1.hh>
44 
45 
46 //// C++ headers
47 //#include <cstdlib>
48 //#include <string>
49 //#include <vector>
50 
51 namespace protocols {
52 namespace jumping {
53 
54 
55 ///@brief select jumps to build a given topology
56 ///@detail this class encapsulates the functionality of choose_random_pairings in jumping_pairings.cc of Rosetta++
58 public:
60 
61 protected:
62  //default do nothing always use input_sheet_sizes_ as sheet_sizes_.
63  virtual SheetTopology create_new_random_topol() const;
65  return "RandomSheetBuilder";
66  }
67 private:
69 
70 };
71 
72 } //protocols
73 } //jumping
74 
75 #endif
76