Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterfaceBindingEnergyDensityFilter.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/simple_filters/InterfaceBindingEnergyDensityFilter.hh
11 /// @brief Filter class for looking at the dGbind/dSASA ratio
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_protocols_simple_filters_InterfaceBindingEnergyDensityFilter_hh
15 #define INCLUDED_protocols_simple_filters_InterfaceBindingEnergyDensityFilter_hh
16 
17 // Unit headers
19 
20 // Package headers
26 
27 // Project headers
28 #include <core/types.hh>
29 #include <core/pose/Pose.fwd.hh>
31 
32 // Utility headers
33 #include <utility/tag/Tag.fwd.hh>
34 
35 namespace protocols {
36 namespace simple_filters {
37 
39 {
40 public:
43  InterfaceSasaFilterOP sasa_filter,
44  DdgFilterOP ddG_filter,
45  core::Real threshold
46  );
47 
49 
51  void set_ddG_filter( DdgFilterOP ddG_filter );
52  void set_upper_threshold( core::Real threshold );
53 
54  bool apply( core::pose::Pose const & pose ) const;
55  void report( std::ostream & out, core::pose::Pose const & pose ) const;
56  core::Real report_sm( core::pose::Pose const & pose ) const;
57  core::Real compute( core::pose::Pose const & pose ) const;
58  filters::FilterOP clone() const;
60 
61  void parse_my_tag(
62  utility::tag::TagPtr const tag,
64  filters::Filters_map const &,
66  core::pose::Pose const &
67  );
68 
69 private:
72 
74 };
75 
76 }
77 }
78 
79 #endif