Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScoreStruct.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file core/io/raw_data/ScoreStruct.cc
12 ///
13 /// @brief Write out only score information
14 /// @author Monica Berrondo
15 
16 // C++ Headers
17 // AUTO-REMOVED #include <string>
18 #include <map>
19 
20 // mini headers
21 #include <core/pose/Pose.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 namespace core {
28 namespace io {
29 namespace raw_data {
30 
32  decoy_tag_ = "empty";
33  }
34 
36  core::pose::Pose, // pose,
37  std::string tag
38  ) {
39  // tag information
40  decoy_tag_ = tag;
41  }
42  // @brief Fill a Pose with the data in this ScoreStruct.
45  ) {
46 // basic::T("core.io.silent.ScoreStruct") << "Error: don't have a conformation! (called fill_pose())";
47  } // fill_pose
48 
52  ) {
53 // basic::T("core.io.silent.ScoreStruct") << "Error: don't have a conformation! (called fill_pose())";
54  } // fill_pose
55 
56  /// @brief Print the conformation information contained in this object to the given ozstream.
57  void ScoreStruct::print_conformation( std::ostream& ) const {
58 // basic::T("core.io.silent.ScoreStruct") << "Error: don't have a conformation (called print_conformation())!";
59  } // print_conformation
60 
62 // basic::T("core.io.silent.ScoreStruct") << "Error: don't have a conformation (called get_debug_rmsd())!";
63  return 0;
64  }
65 
66 } // namespace silent
67 } // namespace io
68 } // namespace core