Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PackRotamersMoverLazy.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
11 /// @brief
12 /// @author Hetu Kamisetty
13 
14 #ifndef INCLUDED_protocols_simple_moves_PackRotamersMoverLazy_hh
15 #define INCLUDED_protocols_simple_moves_PackRotamersMoverLazy_hh
16 
17 // Unit headers
20 #include <protocols/moves/Mover.hh>
21 
22 // Project headers
23 #include <core/types.hh>
24 
25 // AUTO-REMOVED #include <core/pack/interaction_graph/InteractionGraphBase.hh>
26 // AUTO-REMOVED #include <core/pack/rotamer_set/RotamerSets.hh>
28 //#ifdef __clang__
29 // AUTO-REMOVED #include <core/pack/task/PackerTask.hh>
30 //#endif
32 #include <core/pose/Pose.fwd.hh>
35 #include <utility/tag/Tag.fwd.hh>
36 #include <utility/vector0.hh>
37 #include <utility/vector1.hh>
38 
39 
40 
41 namespace protocols {
42 namespace simple_moves {
43 
44 /// @brief a mover that packs the side-chains using a rotamer library in a lazy fashion.
45 // specifically. if given an ig, it will use it instead of trying to make its own. this allows
46 // user to call multiple times with the same ig, but different arguments (eg. rot_to_pack)
48 
49 public:
50  ///@brief default constructor
51 
53  ScoreFunctionCOP scorefxn,
54  PackerTaskCOP task = 0,
55  core::Size nloop = 1
56  );
58 
59  ///@brief constructor with typename
60  // Undefinede, commenting out to fix PyRosetta build PackRotamersMoverLazy( std::string const & );
61 
62  // destructor (important for properly forward-declaring smart-pointer members)
63  virtual ~PackRotamersMoverLazy();
64 
65  // methods
66  virtual void call_setup(Pose & pose);
67  virtual void apply_to_rotpack( Pose & pose, utility::vector0< int > rot_to_pack);
68  virtual void parse_my_tag(
69  TagPtr const,
71  Filters_map const &,
73  Pose const & );
74 
75 protected:
76 //core::PackerEnergy run_with_ig( Pose & pose, utility::vector0< int > rot_to_pack, InteractionGraphBaseOP ig) const;
77 
78 private:
79 
80 };
81 
82 // note: it is better to create new files, instead of adding additional classes here
83 
84 } // moves
85 } // protocols
86 
87 #endif