Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RotamerDumpMover.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/RotamerDump/RotamerDumpMover.hh
11 /// @author Sam DeLuca
12 
13 #ifndef INCLUDED_protocols_RotamerDump_RotamerDumpMOver_HH
14 #define INCLUDED_protocols_RotamerDump_RotamerDumpMOver_HH
15 
20 #include <protocols/moves/Mover.hh>
21 // AUTO-REMOVED #include <core/pose/Pose.hh>
23 // AUTO-REMOVED #include <core/pack/interaction_graph/InteractionGraphBase.hh>
24 
26 #include <utility/vector1.hh>
27 
28 
29 namespace protocols {
30 namespace RotamerDump {
31 
32 /// @brief a mover for dumping interaction graph information. The information is appended to the current job.
34 {
35 public:
36 
38  virtual void apply(core::pose::Pose & pose);
39  virtual std::string get_name() const ;
40 
41 private:
42  /// @brief dump the one body energy table
44 
45  /// @brief dump the two body energy table
47  /// @brief dump the xyz coordinates of every atom in every rotamer
49  /// @brief return the interaction nodes selected by the annealer. This function does not modify the pose.
51 
54 
55 };
56 
57 }
58 }
59 
60 #endif