Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
WorkUnit_BatchRelax.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/realx/WorkUnit_BatchRelax.hh
11 /// @brief
12 /// @author Mike Tyka
13 
14 #ifndef INCLUDED_protocols_relax_WorkUnit_BatchRelax_hh
15 #define INCLUDED_protocols_relax_WorkUnit_BatchRelax_hh
16 
18 #include <core/pose/Pose.hh>
19 
20 #include <utility/vector1.hh>
21 
22 namespace protocols {
23 namespace relax {
24 
25 
26 
30 
32 public:
35 
36  // @brief Run the workunit - overloaded by children of this class
37  virtual void run();
38 
39  // @brief Hook for post processing such as rescoring etc.
40  virtual void pre_process();
41 
42  // @brief Hook for post processing such as rescoring etc.
43  virtual void post_process();
44 
45  virtual protocols::wum::WorkUnitBaseOP clone() const;
46 
47  void
49 
50  protected:
51 
54  private:
55 };
56 
57 
59 public:
62 
63  virtual protocols::wum::WorkUnitBaseOP clone() const;
64 
65  void set_defaults();
66 
67  // @brief Hook for post processing such as rescoring etc.
68  virtual void pre_process();
69 
70  // @brief Hook for post processing such as rescoring etc.
71  virtual void post_process();
72 
73  // @brief Hook for post processing such as rescoring etc.
74  virtual void rescore_all_decoys();
75 
76  protected:
77 
78  void trim();
79 
80  private:
81 
84 };
85 
86 
87 
88 
89 }
90 }
91 
92 #endif