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 JumpSetup
11 /// @brief read jump-definition file setups fold tree an chainbreak variants
12 /// loop code didn't work because fold-tree to complicated ( overlapping loops )
13 /// @detailed
14 /// @author Oliver Lange
15 
16 
17 #ifndef INCLUDED_core_scoring_dssp_util_hh
18 #define INCLUDED_core_scoring_dssp_util_hh
19 
20 // Project Headers
21 #include <core/pose/Pose.fwd.hh>
22 // AUTO-REMOVED #include <core/kinematics/FoldTree.hh>
23 #include <core/types.hh>
24 // AUTO-REMOVED #include <core/fragment/JumpingFrame.fwd.hh>
25 
26 #include <utility/vector1.hh>
27 
28 
29 namespace core {
30 namespace scoring {
31 namespace dssp {
32 
34 
35 void
37  PointList const & ca1, // pass by reference, so no tricks:: 3x3
38  PointList const & ca2, // pass by reference, so no tricks:: 3x3
39  Vector & a,
40  Vector & b,
41  Vector & c
42 );
43 
44 void
46  pose::Pose const& pose,
47  Size const res1,
48  Size const res2,
49  Real& orientation,
50  Real& pleating1,
51  Real& pleating2
52 );
53 
54 void
56  pose::Pose const& pose,
57  Size const pos1,
58  Size const pos2,
59  Size &orientation,
60  Size &pleating
61 );
62 
63 
64 } // dssp
65 } // scoring
66 } // core
67 
68 #endif