Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HeavyAtomFilter.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/HeavyAtomFilter.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_HeavyAtomFilter_hh
15 #define INCLUDED_protocols_ligand_docking_HeavyAtomFilter_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( "HeavyAtom" )
37  {}
38 
39  HeavyAtomFilter(std::string chain, core::Size heavy_atom_limit ) :
40  //utility::pointer::ReferenceCount(),
41  protocols::filters::Filter( "HeavyAtom" ),
42  chain_(chain),
43  heavy_atom_limit_(heavy_atom_limit)
44  {}
45 
47  //utility::pointer::ReferenceCount(),
48  protocols::filters::Filter( init ),
49  chain_(init.chain_),
51 
52  {};
53 
54  virtual ~HeavyAtomFilter(){};
55 
56  bool apply( core::pose::Pose const & pose ) const;
58  return new HeavyAtomFilter( *this );
59  }
60 
62  return new HeavyAtomFilter();
63  }
64 
66 
67 private:
70 };
71 } // ligand_docking
72 } // protocols
73 
74 #endif //INCLUDED_protocols_ProteinInterfaceDesign_ligand_docking_HeavyAtomFilter_HH_
75