Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ddGData.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 #ifndef INCLUDED_protocols_ddg_ddGData_hh
11 #define INCLUDED_protocols_ddg_ddGData_hh
12 
13 // Unit header
15 
16 // Utility headers
17 #include <utility/pointer/ReferenceCount.hh>
18 
19 #include <fstream>
20 
21 #include <core/types.hh>
22 #include <core/chemical/AA.hh>
23 #include <core/pose/Pose.fwd.hh>
25 #include <utility/vector1.hh>
26 #include <map>
27 
28 
29 namespace protocols{
30 namespace ddG{
31 
32 using namespace core;
33 using namespace scoring;
34 
35 class ddGData {
36 public:
37  //constructors
38  ddGData();
39 
41 
42  //virtual ~ddGData();
43 
44  //iterator functions
45  bool end();
46  void get_next_filenames();
47  utility::vector1< pose::Pose > read_mut_data();
48  utility::vector1< pose::Pose > read_wt_data();
49  core::Real read_exp_data();
50 
51 private:
52 
59  std::ifstream inputstream;
60 };//class ddGData
61 
62 
63 
64 
65 }//namespace ddG
66 } //namespace protocols
67 
68 #endif