Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
EnzdesJobInputter.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 protocols/enzdes/EnzdesJobInputter.hh
11 /// @author Florian Richter (floric@u.washington.edu ), Sagar Khare (khares@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_enzdes_EnzdesJobInputter_hh
14 #define INCLUDED_protocols_enzdes_EnzdesJobInputter_hh
15 
16 //unit headers
19 
20 //package headers
22 #include <protocols/jd2/Job.fwd.hh>
23 
24 //project headers
25 #include <core/pose/Pose.fwd.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 //utility headers
31 
32 namespace protocols {
33 namespace enzdes {
34 
36 {
37 public:
38 
40 
41  virtual ~EnzdesJobInputter();
42 
43  ///@brief this function is responsible for filling the pose reference with the pose indicated by the job. The Job object (within its InnerJob) contains a PoseCOP. This function needs to either fill the pose reference from the InnerJob or, on first demand of a pose from that InnerJob, instantiate the pose, hand off a COP to the InnerJob, and fill the reference. This implementation uses pose_from_pdb
44  virtual void pose_from_job( core::pose::Pose & pose, protocols::jd2::JobOP job );
45 
46 private:
47 
48  //eventual loops file
50 
51 }; // EnzdesJobInputter
52 
53 } // namespace enzdes
54 } // namespace protocols
55 
56 #endif // _INCLUDED_protocols_enzdes_EnzdesJobInputter_hh_