Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PDBPoseInputStream.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
11 /// @brief
12 /// @author James Thompson
13 
14 // libRosetta headers
15 
16 #ifndef INCLUDED_core_import_pose_pose_stream_PDBPoseInputStream_HH
17 #define INCLUDED_core_import_pose_pose_stream_PDBPoseInputStream_HH
18 
20 #include <core/pose/Pose.fwd.hh>
21 
23 
24 #include <utility/file/FileName.hh>
25 #include <utility/vector1_bool.hh>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace core {
31 namespace import_pose {
32 namespace pose_stream {
33 
35 
36 public:
38 
41  ) {
42  set_filenames( fns );
43  }
44 
47  fns.push_back( fn );
48  set_filenames( fns );
49  }
50 
54  ) {
55  set_filenames( fns );
56  add_list_filenames( list_fns );
57  }
58 
60 
62 
64 
65  virtual bool has_another_pose();
66 
67  virtual void reset();
68 
69  virtual void fill_pose(
70  core::pose::Pose & pose,
71  core::chemical::ResidueTypeSet const & residue_set
72  );
73  virtual void fill_pose( core::pose::Pose& );
74 
76  core::chemical::ResidueTypeSet const & residue_set
77  );
78 
79  /// @brief adds a list of files each containing lists of PDBs
80  void add_list_filenames(
82  );
83 
84 private:
87 }; // PDBPoseInputStream
88 
89 } // pose_stream
90 } // import_pose
91 } // core
92 
93 #endif