Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
protocols
match
output
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
21
#include <
protocols/match/output/ProcessorFactory.fwd.hh
>
22
23
// Package headers
24
#include <
protocols/match/Matcher.fwd.hh
>
25
#include <
protocols/match/MatcherTask.fwd.hh
>
26
#include <
protocols/match/output/MatchProcessor.fwd.hh
>
27
#include <
protocols/match/output/MatchEvaluator.fwd.hh
>
28
#include <
protocols/match/output/MatchFilter.fwd.hh
>
29
#include <
protocols/match/output/MatchGrouper.fwd.hh
>
30
#include <
protocols/match/output/OutputWriter.fwd.hh
>
31
#include <
protocols/match/output/UpstreamHitCacher.fwd.hh
>
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
47
class
ProcessorFactory
:
public
utility::pointer::ReferenceCount
{
48
public
:
49
typedef
core::Real
Real
;
50
typedef
core::Size
Size
;
51
public
:
52
ProcessorFactory
();
53
54
virtual
55
~ProcessorFactory
();
56
57
static
58
MatchProcessorOP
59
create_processor
(
60
MatcherCOP
matcher,
61
MatcherTaskCOP
task
62
);
63
64
private
:
65
static
66
MatchEvaluatorOP
67
create_evaluator
(
68
MatcherCOP
matcher,
69
MatcherTaskCOP
task,
70
UpstreamHitCacherOP
cacher
71
);
72
73
static
74
std::list< MatchFilterOP >
75
create_filters
(
76
MatcherCOP
matcher,
77
MatcherTaskCOP
task,
78
UpstreamHitCacherOP
cacher
79
);
80
81
static
82
MatchGrouperOP
83
create_grouper
(
84
MatcherCOP
matcher,
85
MatcherTaskCOP
task,
86
UpstreamHitCacherOP
cacher
87
);
88
89
90
static
91
OutputWriterOP
92
create_output_writer
(
93
MatcherCOP
matcher,
94
MatcherTaskCOP
task,
95
UpstreamHitCacherOP
cacher
96
);
97
98
99
};
100
101
}
102
}
103
}
104
105
#endif
Generated on Sat Jun 1 2013 11:59:44 for Rosetta 3.5 by
1.8.4