Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MPI_Relax.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/wum/MPI_Relax.hh
11 /// @brief
12 /// @author Mike Tyka
13 
14 #ifndef INCLUDED_protocols_wum_MPI_Relax_hh
15 #define INCLUDED_protocols_wum_MPI_Relax_hh
16 
19 #include <core/types.hh>
20 #include <core/pose/Pose.fwd.hh>
21 #include <utility/pointer/ReferenceCount.hh>
22 #include <protocols/moves/Mover.hh>
24 
25 #include <string>
26 #include <vector>
27 
28 namespace protocols {
29 namespace wum {
30 
31 
32 
34  public:
38  {
40  };
41 
42  virtual ~MPI_Relax(){}
43 
44  virtual void register_work_units();
45  protected:
46  void virtual init_master();
47 
48  void virtual init_slave();
49 
50  void virtual process_inbound_wus_master();
51 
52  void virtual process_outbound_wus_master();
53 
54  bool fill_outbound_queue();
55 
56  private:
57 
59 
61 };
62 
63 
64 
65 }
66 }
67 
68 #endif
69