Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StepWiseProteinCCD_Closer.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 SWA_ProteinCCD_Closer.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_protein_StepWiseProteinCCD_Closer_HH
18 #define INCLUDED_protocols_swa_protein_StepWiseProteinCCD_Closer_HH
19 
20 #include <core/pose/Pose.fwd.hh>
21 #include <core/id/TorsionID.hh>
24 // AUTO-REMOVED #include <protocols/swa/StepWisePoseSampleGenerator.hh>
25 #include <protocols/moves/Mover.hh>
26 #include <protocols/loops/Loop.hh>
27 #include <utility/vector1.hh>
28 
29 //Auto Headers
31 
32 namespace protocols {
33 namespace swa {
34 namespace protein {
35 
36  /////////////////////////////////////////////////////////////////////////////////////////////////
38  public:
39 
40  //constructor!
44 
45  //destructor -- necessary?
47 
48  /// @brief Apply the minimizer to one pose
49  virtual void apply( core::pose::Pose & pose_to_visualize );
50 
51  virtual std::string get_name() const;
52 
53 
56 
57  void
58  set_ccd_close_res( Size const value ){ ccd_close_res_ = value;}
59 
60  private:
61 
62  bool
64 
65  void
67 
68  void
69  setup_torsions( core::pose::Pose const & pose );
70 
71  void
72  figure_out_loop( core::pose::Pose const & pose );
73 
74  void
76 
77  void
79 
80  void
82 
83  void
85 
86  private:
87 
89 
94 
97 
100 
102 
103  bool const verbose_;
104 
106  };
107 
108 } //swa
109 } // protocols
110 
111 }
112 #endif