Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StepWiseProteinResidueSampler.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_ResidueSampler.hh
11 /// @brief
12 /// @detailed
13 ///
14 /// @author Rhiju Das
15 
16 
17 #ifndef INCLUDED_protocols_swa_protein_StepWiseProteinResidueSampler_HH
18 #define INCLUDED_protocols_swa_protein_StepWiseProteinResidueSampler_HH
19 
20 #include <core/kinematics/Jump.hh>
21 #include <core/pose/Pose.fwd.hh>
23 #include <core/types.hh>
24 // AUTO-REMOVED #include <core/id/TorsionID.hh>
27 #include <utility/vector1.hh>
28 #include <protocols/moves/Mover.hh>
30 // AUTO-REMOVED #include <protocols/swa/protein/MainChainTorsionSet.hh> // should make a .fwd.hh probably
31 #include <string>
32 #include <map>
33 
34 //Auto Headers
35 #include <core/id/TorsionID.fwd.hh>
36 namespace protocols {
37 namespace swa {
38 namespace protein {
39 
40  // typedef std::map< std::string, core::pose::PoseOP > PoseList;
41 
42  /////////////////////////////////////////////////////////////////////////////////////////////////
43  /////////////////////////////////////////////////////////////////////////////////////////////////
45  public:
46 
47  //constructor!
49  utility::vector1< Size > const & moving_residues,
50  utility::vector1< core::id::TorsionID > const & which_torsions,
51  utility::vector1< utility::vector1< core::Real > > const & main_chain_torsion_set_lists );
52 
53 
54  //constructor!
56  utility::vector1< Size > const & moving_residues,
57  utility::vector1< core::id::TorsionID > const & which_torsions,
58  utility::vector1< utility::vector1< core::Real > > const & main_chain_torsion_set_lists,
59  Size const which_jump,
61 
62  //destructor -- necessary?
64 
65  /// @brief Apply the minimizer to one pose
66  virtual void apply( core::pose::Pose & pose_to_visualize );
67 
68  virtual std::string get_name() const;
69 
70 
71  void
72  set_silent_file( std::string const & setting );
73 
74  void
75  set_scorefxn( core::scoring::ScoreFunctionOP const & scorefxn );
76 
77  void
78  set_use_green_packer( bool const & setting );
79 
80  void
81  set_use_packer_instead_of_rotamer_trials( bool const & setting );
82 
83  void
84  set_do_prepack( bool const & setting );
85 
86  void set_calc_rms_res( utility::vector1< core::Size > const & calc_rms_res );
87 
89 
90  private:
91 
92  void
94 
95  void
97  std::string const & tag );
98 
99  void
101 
102  void
103  initialize_green_packer( core::Size const & nres );
104 
105  void
107 
108  void
110  utility::vector1< bool > & residues_allowed_to_be_packed );
111 
112  void
114 
115  void
117 
118  private:
119 
123  // PoseList pose_list_;
132 
134 
136 
138 
141 
142  };
143 
144 } //protein
145 } //swa
146 } // protocols
147 
148 
149 #endif