Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UnboundRotamersOperation.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 core/pack/rotamer_set/UnboundRotamersOperation.hh
11 ///
12 /// @brief
13 /// @author Ian W. Davis
14 
15 
16 #ifndef INCLUDED_core_pack_rotamer_set_UnboundRotamersOperation_hh
17 #define INCLUDED_core_pack_rotamer_set_UnboundRotamersOperation_hh
18 
20 
25 #include <core/pose/Pose.fwd.hh>
26 // AUTO-REMOVED #include <utility/vector1.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 namespace core {
32 namespace pack {
33 namespace rotamer_set {
34 
35 
36 ///@brief Adds in rotamers from the "unbound" or native structure(s),
37 /// pulled from one or more PDBs supplied on the command line.
38 ///@details Sequence numbering matters -- rotamers will only be added
39 /// if sequence numbers match AND the ResidueType is allowed by the PackerTask.
40 /// By itself, this class does NOT grant a Dunbrack energy bonus to the native rotamer(s).
42 {
43 public:
44 
46  virtual ~UnboundRotamersOperation();
47 
48  /// @brief Adds rotamers from the specified pose to the unbound collection.
49  virtual void add_pose(core::pose::PoseCOP pose);
50 
51  virtual Size total_residue();
52 
53  /// @brief Loads poses from the -unboundrot flag.
54  virtual void initialize_from_command_line();
55 
56  virtual
58  clone() const;
59 
60  virtual
61  void
63  pose::Pose const & pose,
64  scoring::ScoreFunction const & sfxn,
65  task::PackerTask const & ptask,
66  graph::GraphCOP packer_neighbor_graph,
68  );
69 
70 private:
73 
74 }; // UnboundRotamersOperation
75 
76 
77 } // namespace rotamer_set
78 } // namespace pack
79 } // namespace core
80 
81 #endif // INCLUDED_core_pack_rotamer_set_UnboundRotamersOperation_HH