Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
pack_missing_sidechains.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/pack/pack_missing_sidechains.hh
11 /// @brief header for subroutine to run rotamer trials on residues missing sidechain density in a PDB
12 /// @author Steven Lewis smlewi@gmail.com
13 
14 #ifndef INCLUDED_core_pack_pack_missing_sidechains_hh
15 #define INCLUDED_core_pack_pack_missing_sidechains_hh
16 
17 // Project headers
19 #include <core/pose/Pose.fwd.hh>
20 #include <utility/vector1.fwd.hh>
21 
22 #include <utility/vector1.hh>
23 
24 
25 namespace core {
26 namespace pack {
27 
28 ///@brief This function runs rotamer trials on residues missing sidechain density (as described by the AtomID_Mask)
29 void
31  pose::Pose & pose,
32  id::AtomID_Mask const& missing
33 );
34 
35 ///@brief return vector of bools with true for each residue that has >=1 atom in to_repack that is not VIRTUAL, ORBS or LPbb
37  core::pose::Pose & pose,
38  core::id::AtomID_Mask const& to_repack,
39  utility::vector1_bool& repackable
40 );
41 
42 
43 } //namespace pack
44 } //namespace core
45 
46 #endif //INCLUDED_core_pack_pack_missing_sidechains_HH