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
simple_filters
COFilter.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 src/protocols/filters/COFilters.hh
11
/// @brief header file for SheetCOFilter class.
12
/// @detailed
13
/// @author Robert Vernon
14
/// @author James Thompson
15
16
#ifndef INCLUDED_protocols_simple_filters_COFilter_hh
17
#define INCLUDED_protocols_simple_filters_COFilter_hh
18
19
// Unit Headers
20
#include <
protocols/simple_filters/AbinitioBaseFilter.hh
>
21
22
// Project Headers
23
#include <
core/pose/Pose.fwd.hh
>
24
// AUTO-REMOVED #include <basic/options/option.hh>
25
#include <basic/options/keys/OptionKeys.hh>
26
27
#include <utility/vector1.hh>
28
29
30
// ObjexxFCL Headers
31
32
// Utility headers
33
34
//// C++ headers
35
36
namespace
protocols {
37
namespace
simple_filters {
38
39
class
COFilter
:
public
AbinitioBaseFilter
{
40
public
:
41
/// c-tor and d-tor
42
COFilter
() {
43
using namespace
basic::options;
44
using namespace
basic::options::OptionKeys;
45
}
46
virtual
~COFilter
() {}
47
48
filters::FilterOP
clone
()
const
{
49
return
new
COFilter
( *
this
); }
50
51
filters::FilterOP
fresh_instance
()
const
{
52
return
new
COFilter
(); }
53
54
55
/// @brief Returns true if the given pose passes the filter, false otherwise.
56
virtual
57
bool
apply
(
core::pose::Pose
const
& pose )
const
;
58
59
virtual
60
std::string
name
()
const
{
61
return
"Contact-Order Filter"
;
62
}
63
};
64
65
}
// filters
66
}
// protocols
67
68
#endif
Generated on Sat Jun 1 2013 12:13:07 for Rosetta 3.5 by
1.8.4