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
protein_interface_design
DockDesignFilterFactory.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/protein_interface_design/DockDesignFilterFactory.hh
11
/// @brief
12
/// @author ashworth
13
14
#ifndef INCLUDED_protocols_protein_interface_design_DockDesignFilterFactory_hh
15
#define INCLUDED_protocols_protein_interface_design_DockDesignFilterFactory_hh
16
17
// Unit Headers
18
#include <
protocols/protein_interface_design/DockDesignFilterFactory.fwd.hh
>
19
#include <
protocols/filters/Filter.fwd.hh
>
20
21
#include <
protocols/moves/DataMap.fwd.hh
>
22
#include <
protocols/moves/Mover.fwd.hh
>
23
24
#include <
core/pose/Pose.fwd.hh
>
25
26
// Utility Headers
27
#include <utility/pointer/ReferenceCount.hh>
28
#include <utility/tag/Tag.fwd.hh>
29
30
// c++ headers
31
#include <map>
32
33
#include <utility/vector1.hh>
34
35
36
namespace
protocols {
37
namespace
protein_interface_design {
38
39
class
DockDesignFilterFactory
:
public
utility::pointer::ReferenceCount
40
{
41
public
:
42
typedef
utility::tag::Tag
Tag
;
43
typedef
utility::tag::TagPtr
TagPtr
;
44
typedef
core::pose::Pose
Pose
;
45
46
public
:
47
DockDesignFilterFactory
();
48
virtual
~DockDesignFilterFactory
();
49
50
///@brief add a Filter prototype, using its default type name as the map key
51
void
add_type
(
protocols::filters::FilterOP
);
52
///@brief add a Filter prototype, using an arbitrary type name as the map key
53
void
add_type
(
std::string
const
&,
protocols::filters::FilterOP
);
54
///@brief return new Filter by key lookup in dock_design_filter_map_
55
protocols::filters::FilterOP
newFilter
(
std::string
const
& );
56
///@brief return new Filter by Tag parsing
57
protocols::filters::FilterOP
newFilter
(
58
TagPtr
const
,
59
moves::DataMap
&,
60
protocols::filters::Filters_map
const
&,
61
moves::Movers_map
const
&,
62
Pose
const
& );
63
64
private
:
65
protocols::filters::Filters_map
dock_design_filter_map_
;
66
67
};
68
69
}
//namespace protein_interface_design
70
}
//namespace protocols
71
72
#endif
Generated on Sat Jun 1 2013 12:02:58 for Rosetta 3.5 by
1.8.4