Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RGFilter.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/RGFilters.hh
11 /// @brief header file for SheetRGFilter class.
12 /// @detailed
13 /// @author Robert Vernon
14 /// @author James Thompson
15 
16 #ifndef INCLUDED_protocols_simple_filters_RGFilter_hh
17 #define INCLUDED_protocols_simple_filters_RGFilter_hh
18 
19 // Unit Headers
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 RGFilter : public AbinitioBaseFilter {
40 public:
41  /// c-tor and d-tor
43  using namespace basic::options;
44  using namespace basic::options::OptionKeys;
45  }
46  virtual ~RGFilter() {}
47 
49  return new RGFilter( *this ); }
50 
52  return new RGFilter(); }
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 std::string name() const {
60  return "RGFilter";
61  }
62 };
63 
64 } // filters
65 } // protocols
66 
67 #endif