Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InnerMultiThreadingJob.cc
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 protocols/jd2/Job.cc
11 /// @brief August 2008 job distributor as planned at RosettaCon08 - Job classes
12 /// @author Steven Lewis smlewi@gmail.com
13 
14 ///Unit headers
15 // AUTO-REMOVED #include <protocols/jd2/Job.hh>
17 
18 ///Project headers
19 #include <core/pose/Pose.hh>
20 // AUTO-REMOVED #include <core/sequence/SequenceAlignment.hh>
21 
22 ///Utility headers
23 #include <basic/Tracer.hh>
24 // AUTO-REMOVED #include <utility/exit.hh>
25 
26 ///C++ headers
27 #include <string>
28 
29 #include <utility/vector1.hh>
30 
31 
32 static basic::Tracer TR("protocols.jd2.InnerMultiThreadingJob");
33 
34 namespace protocols {
35 namespace jd2 {
36 
39  std::string const & input_tag,
40  core::Size nstruct_max,
42  utility::vector1< core::pose::Pose > const & templates
43 ) :
44  InnerJob(pose,input_tag,nstruct_max),
45  alns_(alns),
46  template_poses_(templates)
47 {}
48 
51  return alns_;
52 }
53 
56  return template_poses_;
57 }
58 
59 
61 
62 } // jd2
63 } // protocols