Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StubGenerator.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
11 /// @brief
12 /// @author Alex Ford (fordas@u.washington.edu)
13 //
14 #ifndef INCLUDED_protocols_hotspot_hashing_StubGenerator_hh
15 #define INCLUDED_protocols_hotspot_hashing_StubGenerator_hh
16 
17 // Unit headers
21 #include <core/pose/Pose.fwd.hh>
22 
23 // Utility Headers
24 #include <core/types.hh>
25 #include <numeric/xyzVector.hh>
26 #include <utility/pointer/ReferenceCount.hh>
27 #include <utility/pointer/owning_ptr.hh>
28 
29 #include <utility/vector1.hh>
30 
31 namespace protocols {
32 namespace hotspot_hashing {
33 
35 {
36  public:
39 
40  public:
42 
43  static void placeResidueAtTransform( core::pose::Pose & pose, core::conformation::ResidueCOP sourceResidue, core::kinematics::Stub transform, core::Size & residuejumpindex, core::Size & residueindex);
44 
46 
47  //@brief Moves residue into the transform's reference frame via local2global.
49 
50  //@brief Moves residue from transform's reference frame via global2local.
52 
53  //@brief Returns a stub generated from the residue's orient atoms.
54  //
55  //Used in recapitulating residue orientations when the residue type is known.
57 
58  //@brief Returns a stub generated from the residue's backbone and centroid location.
59  //
60  // Used in orienting residues of varying type in a generation direction of "interest".
61  //
62  // Transform aligns CA atom to <0, 0, 0>
63  // CA->SC heavyatom centroid vector along <1,0,0>
64  // CA->C vector on the XY plane (<CA->C> * <0,0,1> == 0)
66 
68  private:
69  StubGenerator();
70 };
71 
72 } // namespace hotspot_hashing
73 } // namespace protocols
74 
75 #endif