Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HotspotDisjointedFoldTreeMover.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/HotspotDisjointedFoldTreeMover.hh
11 /// author Sarel Fleishman (sarelf@uw.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_HH
14 #define INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_HH
15 
16 #include <core/types.hh>
17 #include <core/pose/Pose.fwd.hh>
18 #include <utility/tag/Tag.fwd.hh>
20 #include <protocols/moves/Mover.hh>
23 #include <set>
25 
26 #include <utility/vector1.hh>
27 
28 
29 namespace protocols {
30 namespace protein_interface_design {
31 namespace movers {
32 
34 {
35 public:
37 
38 public:
40  void apply( core::pose::Pose & pose );
41  virtual std::string get_name() const;
42  void parse_my_tag( utility::tag::TagPtr const tag,
46  core::pose::Pose const & );
47 
51 
52  void add_residue( core::Size const r );
53  std::set< core::Size > get_residues() const;
54  void chain( core::Size const c );
55  core::Size chain() const;
56  core::Real ddG_threshold() const;
57  void ddG_threshold( core::Real const );
60  void interface_radius( core::Real const rad );
63 private:
64  core::Real ddG_threshold_; //dflt 1.0; ala-scan energy above which residues will be considered for the disjointed foldtree
65  std::set< core::Size > residues_; // the list of residues to make disjointed
66  core::Size chain_; //deflt 2; what is the host chain
67  core::Real interface_radius_; //dflt 8 ; value used to look for hotspot residues
68  core::scoring::ScoreFunctionOP scorefxn_; //dflt NULL score12(in rosettascripts)
69 };
70 
71 
72 } //movers
73 } // protein_interface_design
74 } // protocols
75 
76 
77 #endif /*INCLUDED_protocols_protein_interface_design_movers_HotspotDisjointedFoldTreeMover_HH*/
78