Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cst_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 src/protocols/relax/cst_util.hh
11 /// @brief small bundle of utilities for incorporating constraints into relax
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_protocols_relax_cst_util_hh
15 #define INCLUDED_protocols_relax_cst_util_hh
16 
17 #include <core/types.hh>
18 #include <core/pose/Pose.fwd.hh>
19 // AUTO-REMOVED #include <core/sequence/SequenceAlignment.hh>
22 // AUTO-REMOVED #include <core/id/AtomID.fwd.hh>
23 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace relax {
30 
32  core::pose::Pose & pose,
34  core::Real coord_sdev
35 );
36 
37 /// @brief Generate a set of coordinate constraints to backbone atoms using the
38 /// given standard deviations, with one sd per-reside. If no constraint should
39 /// be applied to a given residue, give a -1 for the value of the sdev.
42  core::pose::Pose & pose,
43  utility::vector1< core::Real > const & coord_sdevs
44 );
45 
48  core::pose::Pose & pose,
49  core::scoring::ScoreType scoretype
50 );
51 
53  core::pose::Pose & pose
54 );
55 
57  core::pose::Pose & pose
58 );
59 
61  core::pose::Pose & pose,
62  core::Real const upper_dist_cutoff
63 );
64 
65 } // relax
66 } // protocols
67 
68 #endif