Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HotspotHasherMover.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/movers/HotspotHasherMover.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_hh
15 
16 #include <core/types.hh>
17 #include <core/pose/Pose.fwd.hh>
18 #include <utility/tag/Tag.fwd.hh>
19 // AUTO-REMOVED #include <protocols/filters/Filter.hh>
20 #include <protocols/moves/Mover.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 namespace protocols {
28 namespace protein_interface_design {
29 namespace movers {
30 
32 {
33 public:
35  HotspotHasherMover( std::vector<std::string> const resnames,
37  core::Size const n_stubs,
38  core::Size const target_resnum,
39  protocols::filters::FilterOP hotspot_filter,
40  core::Real const target_distance,
41  std::string const hashin_fname,
42  std::string const hashout_fname );
44  virtual ~HotspotHasherMover();
45  void apply( core::pose::Pose & pose );
46  virtual std::string get_name() const;
49 private:
50  // SET VARIABLES BASED ON THE COMMAND LINE
51  // Residues to use for hashing (defaults to all, sans Gly, Cys, or Pro)
53  std::vector< std::string > resnames_;
57  protocols::filters::FilterOP hotspot_filter_; // a filter for each hotspot. defaults to TrueFilter
58 };
59 
60 
61 } // movers
62 } // protein_interface_design
63 } // protocols
64 
65 
66 #endif /*INCLUDED_protocols_protein_interface_design_movers_HotspotHasherMover_HH*/
67