Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HBondDonorFilter.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/ligand_docking/HBondDonorFilter.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_ligand_docking_HBondDonorFilter_hh
15 #define INCLUDED_protocols_ligand_docking_HBondDonorFilter_hh
16 
17 
18 // AUTO-REMOVED #include <core/pose/Pose.hh>
19 #include <core/types.hh>
21 
22 #include <utility/tag/Tag.fwd.hh>
23 // AUTO-REMOVED #include <list>
24 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace ligand_docking {
30 
32 {
33 public:
35  //utility::pointer::ReferenceCount(),
36  protocols::filters::Filter( "HBondDonor" )
37  {}
38 
39  HBondDonorFilter(std::string chain, core::Size hbond_donor_limit ) :
40  protocols::filters::Filter( "HBondDonor" ),
41  chain_(chain),
42  hbond_donor_limit_(hbond_donor_limit)
43  {}
44 
46  protocols::filters::Filter( init ),
47  chain_(init.chain_),
49 
50  {};
51 
52  virtual ~HBondDonorFilter(){};
53 
54  bool apply( core::pose::Pose const & pose ) const;
56  return new HBondDonorFilter( *this );
57  }
58 
60  return new HBondDonorFilter();
61  }
62 
64 
65 private:
68 };
69 } // ligand_docking
70 } // protocols
71 
72 #endif //INCLUDED_protocols_ProteinInterfaceDesign_ligand_docking_HBondDonorFilter_HH_
73