Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProteinCoreResFilter.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/toolbox/task_operations/RestrictResiduesToRepackingOperation.hh
11 /// @author Gabi Pszolla & Sarel Fleishman
12 
13 #ifndef INCLUDED_protocols_toolbox_task_operations_ProteinCoreResFilter_hh
14 #define INCLUDED_protocols_toolbox_task_operations_ProteinCoreResFilter_hh
15 
16 // Unit Headers
17 
19 
20 // Project Headers
21 #include <core/pose/Pose.fwd.hh>
22 #include <utility/tag/Tag.fwd.hh>
23 
24 // Utility Headers
25 #include <core/types.hh>
26 
27 namespace protocols {
28 namespace toolbox {
29 namespace task_operations {
30 
32  public:
33  ProteinCore();
34  virtual bool operator() ( Pose const &, Size ) const;
36  virtual void parse_tag( TagPtr );
37  private:
38  core::Real distance_threshold_; // dflt 8.0A; sphere around the residue
39  core::Size neighbor_cutoff_; // dflt 10; how many residues in the sequence around the target residue to ignore in computing neighbours
40  bool bound_; // dflt false; treat the bound or unbound pose
41  core::Size jump_; // dflt 1;
43 };
44 } //namespace protocols
45 } //namespace toolbox
46 } //namespace task_operations
47 
48 #endif // INCLUDED_protocols_toolbox_TaskOperations_ProteinCoreResFilter_HH