Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PackingState.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 PackingState.hh
11 /// @brief for multistate design that is based on (re)use of packer information (RotamerSets and InteractionGraph)
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_multistate_design_PackingState_hh
15 #define INCLUDED_protocols_multistate_design_PackingState_hh
16 
19 
23 #include <core/pose/Pose.fwd.hh>
25 #include <core/types.hh>
26 
27 #include <utility/vector0.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 namespace protocols {
33 namespace multistate_design {
34 
35 class PackingState : public SingleState {
36 
37 public:
38  PackingState();
39  PackingState( core::pose::Pose const & pose_in, bool is_positive );
40  virtual ~PackingState();
41 
42  void
46  );
47 
48  void share_packer_data_from( PackingState & other );
49 
50  void run_packer( utility::vector0<int> const & rot_to_pack );
51 
55 
56 protected:
59 
60 private:
61  // forbidden copy constructor: to prevent unexpected behavior re: nonconst pointer data
62  PackingState( PackingState const & other_state );
66 };
67 
68 } // namespace multistate_design
69 } // namespace protocols
70 
71 #endif