Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DomainAssembly.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 /// @brief
11 
12 #ifndef INCLUDED_protocols_hybridization_DomainAssembly_hh
13 #define INCLUDED_protocols_hybridization_DomainAssembly_hh
14 
15 // libRosetta headers
18 #include <core/pose/Pose.hh>
19 #include <core/fragment/FragSet.hh>
27 
30 
31 #include <protocols/moves/Mover.hh>
33 
34 // C++ headers
35 #include <iostream>
36 #include <string>
37 
38 // AUTO-REMOVED #include <basic/Tracer.hh>
39 #include <core/types.hh>
40 #include <utility/vector1.hh>
41 
42 // option key includes
43 #include <basic/options/option.hh>
44 #include <basic/options/keys/cm.OptionKeys.gen.hh>
45 #include <basic/options/keys/loops.OptionKeys.gen.hh>
46 
47 #include <core/kinematics/Jump.hh>
48 #include <numeric/random/random.hh>
50 
51 namespace protocols {
52 //namespace comparative_modeling {
53 namespace hybridization {
54 
56 
57 public:
60  utility::vector1 < core::Real > & domain_assembly_weights
61  );
62 
63 void run();
64 
66  core::pose::PoseOP pose2,
68 {
69  pose1_ = pose1;
70  pose2_ = pose2;
71  scorefxn_ = scorefxn;
72 }
73 
74 void apply(
75  core::pose::Pose & pose
76  );
77 
79 get_name() const {
80  return "DomainAssembly";
81 }
82 
83 private:
85 
89 }; // class DomainAssembly
90 
91 } // namespace hybridization
92 //} // //namespace comparative_modeling
93 } // namespace protocols
94 
95 #endif // PROTOCOLS_COMPARATIVE_MODELING_HYBRIDIZE_HYBRIDIZEFOLDTREEDYNAMIC_HH_