Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
utility.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/flxbb/utility.hh
11 /// @brief
12 /// @author Nobuyasu Koga (nobuyasu@uw.edu)
13 
14 #ifndef INCLUDED_protocols_flxbb_utility_hh
15 #define INCLUDED_protocols_flxbb_utility_hh
16 
17 // Project headers
18 #include <core/types.hh>
19 #include <core/pose/Pose.fwd.hh>
20 // AUTO-REMOVED #include <core/scoring/ScoreFunction.fwd.hh>
22 
24 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace flxbb {
30 
31 typedef core::Size Size;
32 typedef core::Real Real;
33 typedef core::pose::Pose Pose;
36 
37 /// @brief constrain hydrogen bonds in beta sheet ( not used )
38 //void constraints_sheet( pose::Pose & pose, scoring::ScoreFunctionOP & scorefxn, BluePrintOP & blueprint_ );
39 
40 /// @brief constrain between Ca atoms in beta sheet, which are specified in blueprint file
42 constraints_sheet( Pose const & pose, BluePrintOP const & blue, Real const coef, Real const condist=5.5 );
43 
44 /// @brief constrain between Ca atoms in beta sheet
46 constraints_sheet( Pose const & pose, Real const coef, Real const condist=5.5 );
47 
48 /// @brief constraint between N- and C-terminal Ca atoms
50 constraints_NtoC( Pose const & pose, Real const coef, Real const condist=11.0 );
51 
52 /// @brief Looks for unknown amino acids in the pose and returns their indices
54 find_ligands( Pose const & pose );
55 
56 // @brief finds the first non-ligand residue in the pose (should be the N-terminus)
57 // Undefined, commenting out to fix PyRosetta build Size get_first_protein_residue( Pose const & pose );
58 
59 } // namespace flxbb
60 } // namespace protocols
61 
62 #endif