Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetReturningPackRotamersMover.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 SetReturningPackRotamersMover.hh
11 /// @brief A PackRotamers mover which returns a set of packed poses for when ndruns/nloop is in use.
12 /// @author Ron Jacak
13 
14 #ifndef INCLUDED_protocols_simple_moves_SetReturningPackRotamersMover_hh
15 #define INCLUDED_protocols_simple_moves_SetReturningPackRotamersMover_hh
16 
17 // Unit headers
19 #include <protocols/simple_moves/PackRotamersMover.hh> // needed b/c we are extending from PackRotamersMover
20 
21 // Project headers
22 #include <core/types.hh>
23 #include <core/pack/task/PackerTask.fwd.hh> // for PT COP
24 // AUTO-REMOVED #include <core/pose/Pose.hh> // needed because one function takes a vector of Pose objects, not a vector of Pose references or Pose OP's
25 #include <core/scoring/ScoreFunction.fwd.hh> // for SF COP
26 
27 #include <core/pose/Pose.fwd.hh>
28 
29 #include <utility/vector1.hh>
30 
31 
32 #include <utility/vector0.hh>
33 
34 
35 namespace protocols {
36 namespace simple_moves {
37 
38 
40 
41 public:
43  // custom constructor
45 
46  virtual void apply( core::pose::Pose & pose );
47  virtual std::string get_name() const;
49  void output_repacked_poses( std::string filename_prefix );
50 
51 private:
54 
55 };
56 
57 } // moves
58 } // protocols
59 
60 
61 #endif