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
filters
StubScoreFilter.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 sw=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/simple_filters/ContingentFilter.hh
11
/// @brief A filter that is contingent on some other mover to set its pass/fail value
12
/// @author Sarel Fleishman (sarelf@uw.edu)
13
14
#ifndef INCLUDED_protocols_protein_interface_design_filters_StubScoreFilter_hh
15
#define INCLUDED_protocols_protein_interface_design_filters_StubScoreFilter_hh
16
17
18
// Project Headers
19
#include <
protocols/filters/Filter.hh
>
20
#include <
core/pose/Pose.fwd.hh
>
21
#include <utility/tag/Tag.fwd.hh>
22
#include <
protocols/moves/DataMap.fwd.hh
>
23
#include <
protocols/moves/Mover.fwd.hh
>
24
#include <utility/vector1.fwd.hh>
25
#include <
protocols/protein_interface_design/filters/StubScoreFilter.fwd.hh
>
26
27
#include <
protocols/hotspot_hashing/HotspotStub.fwd.hh
>
28
#include <
protocols/hotspot_hashing/HotspotStubSet.fwd.hh
>
29
#include <utility/vector1.hh>
30
31
32
// Unit headers
33
34
namespace
protocols {
35
namespace
protein_interface_design{
36
namespace
filters {
37
38
class
StubScoreFilter
:
public
protocols::filters::Filter
39
{
40
private
:
41
typedef
protocols::filters::Filter
parent
;
42
typedef
std::pair< protocols::hotspot_hashing::HotspotStubSetOP, std::pair< protocols::hotspot_hashing::HotspotStubOP, core::Size > >
StubSetStubPos
;
43
public
:
44
/// @brief default ctor
45
StubScoreFilter
();
46
///@brief Constructor with a single target residue
47
virtual
bool
apply
(
core::pose::Pose
const
& pose )
const
;
48
virtual
void
report
( std::ostream & out,
core::pose::Pose
const
& pose )
const
;
49
virtual
core::Real
report_sm
(
core::pose::Pose
const
& pose )
const
;
50
virtual
protocols::filters::FilterOP
clone
()
const
;
51
virtual
protocols::filters::FilterOP
fresh_instance
()
const
;
52
core::Real
compute
(
core::pose::Pose
const
& pose )
const
;
53
virtual
~StubScoreFilter
();
54
void
stub_sets
(
utility::vector1< StubSetStubPos >
const
&
stub_sets
);
55
void
parse_my_tag
(
utility::tag::TagPtr
const
tag,
56
protocols::moves::DataMap
&,
57
protocols::filters::Filters_map
const
&,
58
protocols::moves::Movers_map
const
&,
59
core::pose::Pose
const
& );
60
private
:
61
utility::vector1< StubSetStubPos >
stub_sets_
;
62
core::Size
host_chain_
;
63
core::Real
cb_force_
;
64
};
65
66
}
// filters
67
}
//protein_interface_design
68
}
// protocols
69
70
#endif //INCLUDED_protocols_Filters_StubScoreFilter_HH_
71
Generated on Sat Jun 1 2013 12:04:01 for Rosetta 3.5 by
1.8.4