Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
util.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 core/pose/carbohydrates/util.hh
11 /// @brief Utility function declarations for carbohydrate-containing poses.
12 /// @author labonte
13 
14 #ifndef INCLUDED_core_pose_carbohydrates_util_HH
15 #define INCLUDED_core_pose_carbohydrates_util_HH
16 
17 // Unit header
18 #include <core/pose/Pose.fwd.hh>
19 
20 // Project headers
21 #include <core/types.hh>
22 
23 
24 namespace core {
25 namespace pose {
26 namespace carbohydrates {
27 
28 /// @brief Calculate and return the phi angle between a saccharide residue of the given pose and the previous residue.
29 core::Angle calculate_carbohydrate_phi(Pose const & pose, uint const sequence_position);
30 
31 /// @brief Return the number of degrees by which the phi angle between a saccharide residue of the given pose and the
32 /// previous residue differs from the BB torsion used by Rosetta.
33 core::Angle carbohydrate_phi_offset_from_BB(Pose const & pose, uint const sequence_position);
34 
35 } // namespace carbohydrates
36 } // namespace pose
37 } // namespace core
38 
39 #endif // INCLUDED_core_pose_carbohydrates_util_HH