Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FragInsertAndAlignMover.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 Frank DiMaio
13 
14 #ifndef INCLUDED_protocols_rbsegment_relax_FragInsertAndAlignMover_hh
15 #define INCLUDED_protocols_rbsegment_relax_FragInsertAndAlignMover_hh
16 
17 // AUTO-REMOVED #include <protocols/rbsegment_relaxMover.hh>
18 
19 // Rosetta Headers
20  // FIX THESE #INCLUDES! EVIL!
21 // AUTO-REMOVED #include <core/pose/Pose.hh>
22 // AUTO-REMOVED #include <core/conformation/Residue.hh>
23 #include <core/fragment/Frame.hh>
24 // AUTO-REMOVED #include <core/scoring/Ramachandran.hh>
25 // AUTO-REMOVED #include <core/kinematics/MoveMap.hh>
26 // AUTO-REMOVED #include <basic/basic.hh>
27 
28 // Utility Headers
29 // AUTO-REMOVED #include <utility/vector1.hh>
30 
31 #include <string>
32 
33 #include <protocols/moves/Mover.hh>
35 #include <utility/vector1.hh>
36 
37 
38 namespace protocols {
39 namespace rbsegment_relax {
40 
43 
44 //////////////////////////////////////////////////////////
45 ///@brief Performs a rigid-body movement on a segment of a protein
46 /// Derived classes must implement 'getCoordinateTransform' and 'apply'
47 /////////////////////////////////////////////////////////
49 public:
50  /// @brief constructor
53 
55  utility::vector1< RBSegment > const &rbsegs,
56  core::pose::Pose const &ref_pose,
57  core::Real randomness=0.0 );
58 
59  /// @brief clone this object
60  virtual protocols::moves::MoverOP clone() const {
62  }
63 
64  /// @brief take a CA-only pose and insert idealized fragments close to the trace
65  void bootstrapCATrace( core::pose::Pose & start_pose );
66 
67  /// @brief insert one RB fragment + realign
68  void apply( core::pose::Pose & pose );
69 
70  virtual std::string get_name() const;
71 
73 
74  /// @brief insert one RB fragment + realign
75  void apply( core::pose::Pose & pose, int idx, bool idealize=false);
76 
77 private:
79  utility::vector1< RBSegment > const &rbsegs,
80  core::pose::Pose const &ref_pose,
81  core::Real randomness=0.0 );
82 
84 };
85 
86 }
87 }
88 
89 #endif