Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AddSidechainConstraintsToHotspots.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/AddSidechainConstraintsToHotspots.hh
11 /// @author Sarel Fleishman (sarelf@u.washington.edu), Jacob Corn (jecorn@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_protein_interface_design_movers_AddSidechainConstraintsToHotspots_hh
14 #define INCLUDED_protocols_protein_interface_design_movers_AddSidechainConstraintsToHotspots_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>
22 #include <set>
23 
24 #include <utility/vector1.hh>
25 
26 
27 namespace protocols {
28 namespace protein_interface_design {
29 namespace movers {
30 
32 {
33 public:
35  void apply( core::pose::Pose & pose );
36  virtual std::string get_name() const;
37  void parse_my_tag( utility::tag::TagPtr const tag,
41  core::pose::Pose const & );
45  core::Size chain() const;
46  void chain( core::Size const c );
47  core::Real coord_sdev() const;
48  void coord_sdev( core::Real const sdev );
49  void add_residue( core::Size const res );
50  std::set< core::Size > const & residues() const;
51 private:
52  core::Size chain_; //dflt 2
53  core::Real coord_sdev_; //dflt 1.0
54  std::set< core::Size > residues_; //dflt empty; used to decide which residues to add constraints to.
55 };
56 
57 
58 } //movers
59 } // protein_interface_design
60 } // protocols
61 
62 
63 #endif /*INCLUDED_protocols_protein_interface_design_movers_AddSidechainConstraintsToHotspots_HH*/
64