Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DesignMinimizeHbonds.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/DesignMinimizeHbonds.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_hh
15 #include <core/types.hh>
16 #include <core/pose/Pose.fwd.hh>
17 #include <utility/tag/Tag.fwd.hh>
20 // AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
21 
22 #include <utility/vector1.hh>
23 
24 //Auto Headers
26 
27 
28 
29 namespace protocols {
30 namespace protein_interface_design {
31 namespace movers {
32 
33 /// @brief used to design a protein to hbond preferentially to a set of target residues on the partner.
34 /// Hbonds involving backbone or sidechain on the target can be counted, and whether to design donors or
35 /// acceptors can also be defined.
37 {
38 public:
43 public:
46  utility::vector1< core::Size > const target_residues, bool const donors, bool const acceptors,
47  bool const bb_hbond, bool const sc_hbond, core::Real const hbond_energy_threshold,
48  core::Real interface_distance_cutoff=8.0,
49  bool const repack_partner1=true, bool const repack_partner2=false, bool const repack_non_ala = true );
51  core::Size const target_residue, bool const donors, bool const acceptors,
52  bool const bb_hbond, bool const sc_hbond, core::Real const hbond_energy_threshold,
53  core::Real interface_distance_cutoff=8.0,
54  bool const repack_partner1=true, bool const repack_partner2=false, bool const repack_non_ala=true );
55  virtual ~DesignMinimizeHbonds();
56  void apply( Pose & pose );
57  virtual std::string get_name() const;
61 private:
65 };
66 
67 } // movers
68 } // protein_interface_design
69 } // protocols
70 
71 
72 #endif /*INCLUDED_protocols_protein_interface_design_movers_DesignMinimizeHbonds_HH*/