Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterfaceHolesFilter.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/filters/InterfaceHolesFilter.hh
11 /// @brief Find packing defects at an interface using packstat score terms
12 /// @author Jacob Corn (jecorn@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_filters_InterfaceHolesFilter_hh
15 #define INCLUDED_protocols_protein_interface_design_filters_InterfaceHolesFilter_hh
16 
17 
18 #include <core/pose/Pose.fwd.hh>
19 #include <core/types.hh>
21 #include <utility/tag/Tag.fwd.hh>
22 
23 #include <utility/vector1.hh>
24 
25 
26 namespace protocols {
27 namespace protein_interface_design {
28 namespace filters {
29 
31 {
32 public:
33  InterfaceHolesFilter() : protocols::filters::Filter( "InterfaceHoles" ) {}
34  InterfaceHolesFilter( core::Size const rb_jump, core::Real const threshold ) : protocols::filters::Filter( "InterfaceHoles" ) {
35  rb_jump_ = rb_jump;
36  threshold_ = threshold;
37  }
38  bool apply( core::pose::Pose const & pose ) const;
40  return new InterfaceHolesFilter( *this );
41  }
43  return new InterfaceHolesFilter();
44  }
46  //utility::pointer::ReferenceCount(),
47  protocols::filters::Filter( init )
48 {
49  rb_jump_ = init.rb_jump_;
50  threshold_ = init.threshold_;
51  };
52  void report( std::ostream & out, core::pose::Pose const & pose ) const;
53  core::Real report_sm( core::pose::Pose const & pose ) const;
54  core::Real compute( core::pose::Pose const & pose ) const;
55  virtual ~InterfaceHolesFilter();
57 private:
60 };
61 } // filters
62 } // protein_interface_design
63 } // protocols
64 
65 #endif //INCLUDED_protocols_protein_interface_design_filters_InterfaceHolesFilter_HH_
66