Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProcessorFactory.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file protocols/match/output/ProcessorFactory.hh
12 /// @brief Declaration for a factory class responsible for instantiating
13 /// MatchProcessor classes.
14 /// @author Alex Zanghellini (zanghell@u.washington.edu)
15 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
16 
17 #ifndef INCLUDED_protocols_match_output_ProcessorFactory_hh
18 #define INCLUDED_protocols_match_output_ProcessorFactory_hh
19 
20 // Unit headers
22 
23 // Package headers
32 
33 // Project headers
34 #include <core/types.hh>
35 
36 // Utility headers
37 #include <utility/pointer/ReferenceCount.hh>
38 // AUTO-REMOVED #include <utility/vector1.hh>
39 
40 // C++ headers
41 #include <list>
42 
43 namespace protocols {
44 namespace match {
45 namespace output {
46 
48 public:
49  typedef core::Real Real;
50  typedef core::Size Size;
51 public:
53 
54  virtual
56 
57  static
60  MatcherCOP matcher,
61  MatcherTaskCOP task
62  );
63 
64 private:
65  static
68  MatcherCOP matcher,
69  MatcherTaskCOP task,
70  UpstreamHitCacherOP cacher
71  );
72 
73  static
74  std::list< MatchFilterOP >
76  MatcherCOP matcher,
77  MatcherTaskCOP task,
78  UpstreamHitCacherOP cacher
79  );
80 
81  static
84  MatcherCOP matcher,
85  MatcherTaskCOP task,
86  UpstreamHitCacherOP cacher
87  );
88 
89 
90  static
93  MatcherCOP matcher,
94  MatcherTaskCOP task,
95  UpstreamHitCacherOP cacher
96  );
97 
98 
99 };
100 
101 }
102 }
103 }
104 
105 #endif