Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AverageDegreeFilter.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/filters/AverageDegreeFilter.hh
11 /// @brief Reports the average degree of connectivity of interface residues
12 /// @author Sarel Fleishman (sarelf@uw.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_filters_AverageDegreeFilter_hh
15 #define INCLUDED_protocols_protein_interface_design_filters_AverageDegreeFilter_hh
16 
17 
18 // Project Headers
20 #include <core/pose/Pose.fwd.hh>
21 #include <utility/tag/Tag.fwd.hh>
25 
27 #include <utility/vector1.hh>
28 
29 // Unit headers
30 
31 namespace protocols {
32 namespace protein_interface_design{
33 namespace filters {
34 
36 {
37 private:
39 public:
40  /// @brief default ctor
42  ///@brief Constructor with a single target residue
43  virtual bool apply( core::pose::Pose const & pose ) const;
44  virtual void report( std::ostream & out, core::pose::Pose const & pose ) const;
45  virtual core::Real report_sm( core::pose::Pose const & pose ) const;
46  virtual protocols::filters::FilterOP clone() const;
48  core::Real compute( core::pose::Pose const & pose ) const;
49  virtual ~AverageDegreeFilter();
52  void parse_my_tag( utility::tag::TagPtr const tag,
56  core::pose::Pose const & );
57  core::Real threshold() const;
60  void distance_threshold( core::Real const d );
61 private:
65 };
66 
67 } // filters
68 } //protein_interface_design
69 } // protocols
70 
71 #endif //INCLUDED_protocols_Filters_AverageDegreeFilter_HH_
72