Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
idealize.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 src/protocols/idealize/idealize.hh
11 /// @brief protocols for idealizing a Pose
12 /// @author
13 
14 
15 #ifndef INCLUDED_protocols_idealize_idealize_hh
16 #define INCLUDED_protocols_idealize_idealize_hh
17 
18 #include <core/types.hh>
19 #include <core/pose/Pose.fwd.hh>
21 
22 #include <utility/vector1_bool.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 
28 namespace protocols {
29 namespace idealize {
30 
31 void
33  core::pose::Pose const & pose1,
34  core::pose::Pose const & pose2,
35  utility::vector1< bool > const & use_pos,
36  core::Real & avg_bb_angle_dev,
37  core::Real & max_bb_angle_dev,
38  core::Real & avg_chi_angle_dev,
39  core::Real & max_chi_angle_dev
40 );
41 
42 void
44  core::pose::Pose & pose,
45  utility::vector1< core::Size > pos_list, // local copy
46  core::scoring::ScoreFunction const & scorefxn,
47  bool const fast,
48  bool const chainbreaks = false // to maintain previous behavior (abrelax and ? may use idealizer to close chainbreaks)
49 );
50 
51 } // idealize
52 } // protocols
53 
54 #endif