Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StubScoreFilter.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/simple_filters/ContingentFilter.hh
11 /// @brief A filter that is contingent on some other mover to set its pass/fail value
12 /// @author Sarel Fleishman (sarelf@uw.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_filters_StubScoreFilter_hh
15 #define INCLUDED_protocols_protein_interface_design_filters_StubScoreFilter_hh
16 
17 
18 // Project Headers
20 #include <core/pose/Pose.fwd.hh>
21 #include <utility/tag/Tag.fwd.hh>
24 #include <utility/vector1.fwd.hh>
26 
29 #include <utility/vector1.hh>
30 
31 
32 // Unit headers
33 
34 namespace protocols {
35 namespace protein_interface_design{
36 namespace filters {
37 
39 {
40 private:
42  typedef std::pair< protocols::hotspot_hashing::HotspotStubSetOP, std::pair< protocols::hotspot_hashing::HotspotStubOP, core::Size > > StubSetStubPos;
43 public:
44  /// @brief default ctor
46  ///@brief Constructor with a single target residue
47  virtual bool apply( core::pose::Pose const & pose ) const;
48  virtual void report( std::ostream & out, core::pose::Pose const & pose ) const;
49  virtual core::Real report_sm( core::pose::Pose const & pose ) const;
50  virtual protocols::filters::FilterOP clone() const;
52  core::Real compute( core::pose::Pose const & pose ) const;
53  virtual ~StubScoreFilter();
55  void parse_my_tag( utility::tag::TagPtr const tag,
59  core::pose::Pose const & );
60 private:
64 };
65 
66 } // filters
67 } //protein_interface_design
68 } // protocols
69 
70 #endif //INCLUDED_protocols_Filters_StubScoreFilter_HH_
71