Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PlaceUtils.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/PlaceStubMover.hh
11 /// @brief definition of classes for grafting hotspots into a pose
12 /// @author Sarel Fleishman (sarelf@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_movers_PlaceUtils_hh
15 #define INCLUDED_protocols_protein_interface_design_movers_PlaceUtils_hh
16 
17 // Project Headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <core/types.hh>
26 #include <utility/tag/Tag.fwd.hh>
30 #include <utility/vector1.fwd.hh>
31 #include <numeric/xyzVector.fwd.hh>
32 
33 #include <utility/vector1.hh>
34 
35 
36 // C++ headers
37 
38 // Unit headers
39 
40 namespace protocols {
41 namespace protein_interface_design {
42 namespace movers {
43 
44 bool
45 test_res_res_aln( core::conformation::Residue const & res1, core::conformation::Residue const & res2, core::Real & C_N_angle, core::Real & CB_CA_angle );
46 
47 /*core::scoring::constraints::ConstraintCOPs
48 add_coordinate_constraints( core::pose::Pose & pose, core::Size const host_chain, core::Size const resnum, core::Real const coord_sdev, core::scoring::constraints::HarmonicFuncOP & coord_cst_func );
49 */
50 
52 add_coordinate_constraints( core::pose::Pose & pose, core::conformation::Residue const source, core::Size const host_chain, core::Size const resnum, core::Real const coord_sdev, core::scoring::constraints::HarmonicFuncOP & coord_cst_func );
53 
54 void
56 
58 
59 /// @brief find the nearest residue to a coordinate
62 
63 /// @brief a utility function for parsing stubset information from a tag
65 parse_stub_sets( utility::tag::TagPtr const tag, core::pose::Pose const & pose, core::Size const host_chain, protocols::moves::DataMap data );
66 
68 } //movers
69 } //protein_interface_design
70 } //protocols
71 
72 #endif /*INCLUDED_protocols_protein_interface_design_movers_PlaceUtils_HH*/
73