Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CompleteConnectionsFilter.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/ligand_docking/CompleteConnectionsFilter.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_CompleteConnectionsFilter_hh
15 #define INCLUDED_protocols_ligand_docking_CompleteConnectionsFilter_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 
24 #include <utility/vector1.hh>
25 
26 
27 namespace protocols {
28 namespace ligand_docking {
29 
31 {
32 public:
34  //utility::pointer::ReferenceCount(),
35  protocols::filters::Filter( "CompleteConnections" ) {}
36 
38  //utility::pointer::ReferenceCount(),
39  protocols::filters::Filter( "CompleteConnections" ),
40  chain_(chain)
41  {}
42 
44  //utility::pointer::ReferenceCount(),
45  protocols::filters::Filter( init ),
46  chain_(init.chain_)
47  {};
48 
50 
51  bool apply( core::pose::Pose const & pose ) const;
53  return new CompleteConnectionsFilter( *this );
54  }
55 
57  return new CompleteConnectionsFilter();
58  }
59 
61 
62 private:
64 };
65 } // ligand_docking
66 } // protocols
67 
68 #endif //INCLUDED_protocols_ProteinInterfaceDesign_ligand_docking_CompleteConnectionsFilter_HH_
69